diff options
author | gdt <gdt> | 2003-12-22 20:18:18 +0000 |
---|---|---|
committer | gdt <gdt> | 2003-12-22 20:18:18 +0000 |
commit | fb63f6245dece74ced53dc52c6c66ad99c8e61b1 (patch) | |
tree | 05a6774fe0443b698d11da581ca406d78ef183eb /lib/vty.c | |
parent | 29d3f53fdb17548a020683f1cc18cb4b78a8116c (diff) | |
download | quagga-fb63f6245dece74ced53dc52c6c66ad99c8e61b1.tar.bz2 quagga-fb63f6245dece74ced53dc52c6c66ad99c8e61b1.tar.xz |
Reorder free(f); unlink(f); to unlink before freeing.import.isisd.sf.20031223
Diffstat (limited to 'lib/vty.c')
-rw-r--r-- | lib/vty.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2173,9 +2173,9 @@ vty_use_backup_config (char *fullpath) sav = open (fullpath_sav, O_RDONLY); if (sav < 0) { + unlink (fullpath_tmp); free (fullpath_sav); free (fullpath_tmp); - unlink (fullpath_tmp); return NULL; } @@ -2187,9 +2187,9 @@ vty_use_backup_config (char *fullpath) if (chmod(fullpath_tmp, CONFIGFILE_MASK) != 0) { + unlink (fullpath_tmp); free (fullpath_sav); free (fullpath_tmp); - unlink (fullpath_tmp); return NULL; } |