- markus@cvs.openbsd.org 2003/01/11 18:29:43
[log.c] set fatal_cleanups to NULL in fatal_remove_all_cleanups(); dtucker@zip.com.au
This commit is contained in:
parent
0141319d85
commit
0946d876f9
|
@ -3,6 +3,10 @@
|
||||||
- fgsch@cvs.openbsd.org 2003/01/10 23:23:24
|
- fgsch@cvs.openbsd.org 2003/01/10 23:23:24
|
||||||
[sftp-int.c]
|
[sftp-int.c]
|
||||||
typo; from Nils Nordman <nino at nforced dot com>.
|
typo; from Nils Nordman <nino at nforced dot com>.
|
||||||
|
- markus@cvs.openbsd.org 2003/01/11 18:29:43
|
||||||
|
[log.c]
|
||||||
|
set fatal_cleanups to NULL in fatal_remove_all_cleanups();
|
||||||
|
dtucker@zip.com.au
|
||||||
|
|
||||||
20030113
|
20030113
|
||||||
- (djm) Rework openbsd-compat/setproctitle.c a bit: move emulation type
|
- (djm) Rework openbsd-compat/setproctitle.c a bit: move emulation type
|
||||||
|
@ -1006,4 +1010,4 @@
|
||||||
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
||||||
ok provos@
|
ok provos@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2567 2003/01/14 11:22:11 djm Exp $
|
$Id: ChangeLog,v 1.2568 2003/01/14 11:22:43 djm Exp $
|
||||||
|
|
3
log.c
3
log.c
|
@ -34,7 +34,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#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 "log.h"
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
|
@ -233,6 +233,7 @@ fatal_remove_all_cleanups(void)
|
||||||
next_cu = cu->next;
|
next_cu = cu->next;
|
||||||
xfree(cu);
|
xfree(cu);
|
||||||
}
|
}
|
||||||
|
fatal_cleanups = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Cleanup and exit */
|
/* Cleanup and exit */
|
||||||
|
|
Loading…
Reference in New Issue