Ignore:
Timestamp:
Aug 18, 2009, 2:36:47 PM (15 years ago)
Author:
Bruno Cornec
Message:

r3329@localhost: bruno | 2009-08-05 00:33:17 +0200
bkpinfo->exclude_paths is now dynamically allocated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.10/mondo/src/common/newt-specific.c

    r2316 r2318  
    427427                mr_asprintf(&command, "rm -Rf %s", bkpinfo->tmpdir);
    428428                system(command);
    429                 paranoid_free(command);
     429                mr_free(command);
    430430            }
    431431        }
     
    436436                mr_asprintf(&command, "rm -Rf %s", bkpinfo->scratchdir);
    437437                system(command);
    438                 paranoid_free(command);
     438                mr_free(command);
    439439            }
    440440        }
    441441        /* Free all allocated strings in bkpinfo */
    442442        mr_free(bkpinfo->nfs_user);
     443        mr_free(bkpinfo->exclude_paths);
    443444
    444445        /* Then free the structure */
Note: See TracChangeset for help on using the changeset viewer.