diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2003-01-11 18:29:44 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2003-01-11 18:29:44 +0000 |
commit | d1061b0f010c4e2ce1ea9ef05ecb99557d9361f7 (patch) | |
tree | 0acefbc5a8952e0f002597f017f644f16212f28d /usr.bin | |
parent | de66bfaf50d850be18510e427fa658f7beae45ac (diff) |
set fatal_cleanups to NULL in fatal_remove_all_cleanups(); dtucker@zip.com.au
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/log.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/log.c b/usr.bin/ssh/log.c index 7ed802c120c..f019db120c7 100644 --- a/usr.bin/ssh/log.c +++ b/usr.bin/ssh/log.c @@ -34,7 +34,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: log.c,v 1.24 2002/07/19 15:43:33 markus Exp $"); +RCSID("$OpenBSD: log.c,v 1.25 2003/01/11 18:29:43 markus Exp $"); #include "log.h" #include "xmalloc.h" @@ -230,6 +230,7 @@ fatal_remove_all_cleanups(void) next_cu = cu->next; xfree(cu); } + fatal_cleanups = NULL; } /* Cleanup and exit */ |