Ignore:
Timestamp:
Jul 27, 2009, 7:45:10 PM (15 years ago)
Author:
Bruno Cornec
Message:
  • popup_and_get_string needs an allocated buffer for the moment so fixing the calls with dyn. ones
  • Fix a bug in mem.c for mr_strcat, which wasn't modifying the right pointer level
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mondo/src/common/libmondo-mountlist.c

    r2290 r2304  
    537537        } else {
    538538            log_msg(8, "Evaluating drive #%d (%s) within mountlist", i, drivelist->el[i].device);
    539             if ((tmp = evaluate_drive_within_mountlist(mountlist, drivelist->el[i].device)) == NULL) {
     539            tmp = evaluate_drive_within_mountlist(mountlist, drivelist->el[i].device);
     540            if (tmp == NULL) {
    540541                res++;
    541542            }
    542543        }
    543544        log_msg(8,"Entry: %d (%s)", i, drivelist->el[i].device);
    544         /* BCO: tmp can be NULL as well as flaws_str */
     545        /* BCO: tmp can be NULL */
    545546        if (tmp != NULL) {
    546547            log_msg(8,"Adding: %s to %s", tmp, flaws_str);
Note: See TracChangeset for help on using the changeset viewer.