Ignore:
Timestamp:
Aug 18, 2009, 3:20:49 PM (15 years ago)
Author:
Bruno Cornec
Message:

r3341@localhost: bruno | 2009-08-13 22:36:24 +0200

  • Replacement of some strcpy
  • Change allocation done in resolve_softlinks_to_get_to_actual_device_file(), where_is_root_mounted(), bkptype_to_string(), which_boot_loader()
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.10/mondo/src/mondorestore/mondo-prep.c

    r2325 r2330  
    16521652    /** pointers **********************************************************/
    16531653    char *p;
    1654     char *part_table_fmt;
     1654    char *part_table_fmt = NULL;
    16551655    FILE *fout;
    16561656
     
    16991699                    log_to_screen("You need to leave at least one partition free, for 'extended/logical'");
    17001700                    mr_free(partition_name);
    1701                     paranoid_free(output);
     1701                    mr_free(output);
     1702                    mr_free(part_table_fmt);
    17021703                    return (1);
    17031704                } else {
     
    17111712        }
    17121713    }
     1714    mr_free(part_table_fmt);
     1715
    17131716    mr_strcat(output, "\n");    /*start block (ENTER for next free blk */
    17141717    if (partsize > 0) {
Note: See TracChangeset for help on using the changeset viewer.