summaryrefslogtreecommitdiff
path: root/xmalloc.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-04-16 11:18:38 +1000
committerDamien Miller <djm@mindrot.org>2000-04-16 11:18:38 +1000
commit4af51306d9a51459a5bef922df1037f876ae51fe (patch)
tree09ecfc215fce82345a3259f8a0f384b9a67906f0 /xmalloc.c
parent5d1705ecf9bd3216dc99a84242bcdf2e7297d307 (diff)
- OpenBSD CVS updates.
[ssh.1 ssh.c] - ssh -2 [auth.c channels.c clientloop.c packet.c packet.h serverloop.c] [session.c sshconnect.c] - check payload for (illegal) extra data [ALL] - whitespace cleanup
Diffstat (limited to 'xmalloc.c')
-rw-r--r--xmalloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmalloc.c b/xmalloc.c
index 0f1c43051..fb29a62e9 100644
--- a/xmalloc.c
+++ b/xmalloc.c
@@ -8,7 +8,7 @@
8 */ 8 */
9 9
10#include "includes.h" 10#include "includes.h"
11RCSID("$Id: xmalloc.c,v 1.2 1999/11/24 13:26:23 damien Exp $"); 11RCSID("$Id: xmalloc.c,v 1.3 2000/04/16 01:18:49 damien Exp $");
12 12
13#include "ssh.h" 13#include "ssh.h"
14 14
@@ -34,7 +34,7 @@ xrealloc(void *ptr, size_t new_size)
34 return new_ptr; 34 return new_ptr;
35} 35}
36 36
37void 37void
38xfree(void *ptr) 38xfree(void *ptr)
39{ 39{
40 if (ptr == NULL) 40 if (ptr == NULL)