diff options
author | Damien Miller <djm@mindrot.org> | 2014-05-15 14:24:59 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2014-05-15 14:24:59 +1000 |
commit | d7fd8bedd4619a2ec7fd02aae4c4e1db4431ad9f (patch) | |
tree | 3a6be31e280328527279322d05a65fd59fc88c99 /sftp.c | |
parent | 1f0311c7c7d10c94ff7f823de9c5b2ed79368b14 (diff) |
- dtucker@cvs.openbsd.org 2014/04/29 19:58:50
[sftp.c]
Move nulling of variable next to where it's freed. ok markus@
Diffstat (limited to 'sftp.c')
-rw-r--r-- | sftp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sftp.c,v 1.160 2014/04/22 10:07:12 logan Exp $ */ | 1 | /* $OpenBSD: sftp.c,v 1.161 2014/04/29 19:58:50 dtucker 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 | * |
@@ -1842,6 +1842,7 @@ complete_match(EditLine *el, struct sftp_conn *conn, char *remote_path, | |||
1842 | pwdlen = tmplen + 1; /* track last seen '/' */ | 1842 | pwdlen = tmplen + 1; /* track last seen '/' */ |
1843 | } | 1843 | } |
1844 | free(tmp); | 1844 | free(tmp); |
1845 | tmp = NULL; | ||
1845 | 1846 | ||
1846 | if (g.gl_matchc == 0) | 1847 | if (g.gl_matchc == 0) |
1847 | goto out; | 1848 | goto out; |
@@ -1849,7 +1850,6 @@ complete_match(EditLine *el, struct sftp_conn *conn, char *remote_path, | |||
1849 | if (g.gl_matchc > 1) | 1850 | if (g.gl_matchc > 1) |
1850 | complete_display(g.gl_pathv, pwdlen); | 1851 | complete_display(g.gl_pathv, pwdlen); |
1851 | 1852 | ||
1852 | tmp = NULL; | ||
1853 | /* Don't try to extend globs */ | 1853 | /* Don't try to extend globs */ |
1854 | if (file == NULL || hadglob) | 1854 | if (file == NULL || hadglob) |
1855 | goto out; | 1855 | goto out; |