[clientloop.c]
     missing free; from Kylene Hall
This commit is contained in:
Damien Miller 2006-06-13 13:00:09 +10:00
parent e250a94e69
commit 24fd8ddd61
2 changed files with 6 additions and 2 deletions

View File

@ -4,6 +4,9 @@
[sshconnect2.c]
uint32_t -> u_int32_t (which we use everywhere else)
(Id sync only - portable already had this)
- markus@cvs.openbsd.org 2006/05/16 09:00:00
[clientloop.c]
missing free; from Kylene Hall
20060521
- (dtucker) [auth.c monitor.c] Now that we don't log from both the monitor
@ -4637,4 +4640,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.4331 2006/06/13 02:59:53 djm Exp $
$Id: ChangeLog,v 1.4332 2006/06/13 03:00:09 djm Exp $

View File

@ -1,4 +1,4 @@
/* $OpenBSD: clientloop.c,v 1.162 2006/04/20 09:27:09 djm Exp $ */
/* $OpenBSD: clientloop.c,v 1.163 2006/05/16 09:00:00 markus Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@ -844,6 +844,7 @@ client_process_control(fd_set *readset)
debug2("%s: accepted tty %d, subsys %d, cmd %s", __func__,
cctx->want_tty, cctx->want_subsys, cmd);
xfree(cmd);
/* Gather fds from client */
new_fd[0] = mm_receive_fd(client_fd);