]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2003/09/19 11:31:33
authordtucker <dtucker>
Mon, 22 Sep 2003 11:12:56 +0000 (11:12 +0000)
committerdtucker <dtucker>
Mon, 22 Sep 2003 11:12:56 +0000 (11:12 +0000)
     [channels.c]
     do not call channel_free_all on fatal; ok deraadt

ChangeLog
channels.c

index 26495963d4462feb6f0b9848e6623946f8594d57..bf25165f1b095e5a0d3f3c9a53bab3d32d1fd536 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -58,6 +58,9 @@
    - markus@cvs.openbsd.org 2003/09/19 11:30:39
      [ssh-keyscan.c]
      avoid fatal_cleanup, just call exit(); ok deraadt
+   - markus@cvs.openbsd.org 2003/09/19 11:31:33
+     [channels.c]
+     do not call channel_free_all on fatal; ok deraadt
 
 20030919
  - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL;
index 3d75c8f2b57b7ded89b690f932cc80e3b583ae28..af2ae18b1a829628da2934fbcb2494443468c417 100644 (file)
@@ -39,7 +39,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: channels.c,v 1.195 2003/09/16 21:02:40 markus Exp $");
+RCSID("$OpenBSD: channels.c,v 1.196 2003/09/19 11:31:33 markus Exp $");
 
 #include "ssh.h"
 #include "ssh1.h"
@@ -217,7 +217,6 @@ channel_new(char *ctype, int type, int rfd, int wfd, int efd,
                channels = xmalloc(channels_alloc * sizeof(Channel *));
                for (i = 0; i < channels_alloc; i++)
                        channels[i] = NULL;
-               fatal_add_cleanup((void (*) (void *)) channel_free_all, NULL);
        }
        /* Try to find a free slot where to put the new channel. */
        for (found = -1, i = 0; i < channels_alloc; i++)
This page took 0.075646 seconds and 5 git commands to generate.