summaryrefslogtreecommitdiff
path: root/sftp-glob.c
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2013-11-09 12:09:48 +0000
committerColin Watson <cjwatson@debian.org>2013-11-09 12:09:48 +0000
commit210ca37aa0cdf5499f0ea847ec150fefbfbf7c39 (patch)
tree64829a84f903d7e2d3270c43e3f80df7db2a6a10 /sftp-glob.c
parent74e339b8f8936bc0d985e053a076d0c9b5e9ea51 (diff)
parentee196dab7c5f97f0b80c8099343a375bead92010 (diff)
merge 6.4p1
Diffstat (limited to 'sftp-glob.c')
-rw-r--r--sftp-glob.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sftp-glob.c b/sftp-glob.c
index 79b7bdb2f..e1f5a6109 100644
--- a/sftp-glob.c
+++ b/sftp-glob.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp-glob.c,v 1.24 2013/05/17 00:13:14 djm Exp $ */ 1/* $OpenBSD: sftp-glob.c,v 1.25 2013/11/08 00:39:15 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> 3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
4 * 4 *
@@ -48,7 +48,7 @@ fudge_opendir(const char *path)
48{ 48{
49 struct SFTP_OPENDIR *r; 49 struct SFTP_OPENDIR *r;
50 50
51 r = xmalloc(sizeof(*r)); 51 r = xcalloc(1, sizeof(*r));
52 52
53 if (do_readdir(cur.conn, (char *)path, &r->dir)) { 53 if (do_readdir(cur.conn, (char *)path, &r->dir)) {
54 free(r); 54 free(r);