Changeset 2398 in MondoRescue for branches/2.2.9/mondo
- Timestamp:
- Sep 15, 2009, 4:00:13 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.9/mondo/src/mondorestore/mondo-rstr-newt.c
r2394 r2398 1975 1975 while (!finished) { 1976 1976 flaws_str = evaluate_mountlist(mountlist); 1977 if (strlen(flaws_str) > 0) { 1977 /* flaws_str can be NULL */ 1978 if ((flaws_str == NULL) || (strlen(flaws_str) == 0)) { 1979 mr_asprintf(&flaws_str_A, ""); 1980 } else { 1978 1981 mr_asprintf(&flaws_str_A, "%s", flaws_str + 1); 1979 } else {1980 mr_asprintf(&flaws_str_A, "");1981 1982 } 1982 1983 if (strlen(flaws_str_A) >= 74) { … … 1994 1995 mr_asprintf(&flaws_str_C, ""); 1995 1996 } 1996 mr_free(flaws_str);1997 1997 1998 1998 newtLabelSetText(flawsLabelA, flaws_str_A); … … 2005 2005 2006 2006 if (b_res == bOK) { 2007 flaws_str = evaluate_mountlist(mountlist);2008 2007 if (flaws_str != NULL) { 2009 mr_free(flaws_str);2010 2008 finished = 2011 2009 ask_me_yes_or_no … … 2060 2058 } 2061 2059 } 2060 mr_free(flaws_str); 2062 2061 } 2063 2062 newtFormDestroy(myForm);
Note:
See TracChangeset
for help on using the changeset viewer.