diff options
author | dtucker@openbsd.org <dtucker@openbsd.org> | 2023-03-08 07:21:32 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2023-03-08 07:31:07 +0100 |
commit | 36c6c3eff5e4a669ff414b9daf85f919666e8e03 (patch) | |
tree | 88e12ff08f36d7afc0db51d44a08b088937d844d /sftp.c | |
parent | upstream: ssh-pkcs11: synchronize error messages with errors (diff) | |
download | openssh-36c6c3eff5e4a669ff414b9daf85f919666e8e03.tar.xz openssh-36c6c3eff5e4a669ff414b9daf85f919666e8e03.zip |
upstream: Plug mem leak. Coverity CID 405196, ok djm@
OpenBSD-Commit-ID: 175f09349387c292f626da68f65f334faaa085f2
Diffstat (limited to '')
-rw-r--r-- | sftp.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: sftp.c,v 1.227 2023/03/08 04:43:12 guenther Exp $ */ +/* $OpenBSD: sftp.c,v 1.228 2023/03/08 06:21:32 dtucker Exp $ */ /* * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> * @@ -1997,7 +1997,9 @@ complete_match(EditLine *el, struct sftp_conn *conn, char *remote_path, memset(&g, 0, sizeof(g)); if (remote != LOCAL) { - tmp = make_absolute_pwd_glob(tmp, remote_path); + tmp2 = make_absolute_pwd_glob(tmp, remote_path); + free(tmp); + tmp = tmp2; remote_glob(conn, tmp, GLOB_DOOFFS|GLOB_MARK, NULL, &g); } else glob(tmp, GLOB_DOOFFS|GLOB_MARK, NULL, &g); |