s3:utils: smbget fix a memory leak
authorJones Syue <jonessyue@qnap.com>
Tue, 27 Jun 2023 09:19:59 +0000 (17:19 +0800)
committerJule Anger <janger@samba.org>
Mon, 3 Jul 2023 07:57:08 +0000 (07:57 +0000)
Using smbget to download files recursively (-R).

If smbget found that a file is already existed in the destination,
smbget would said 'File exists', return early, and 'newname' allocated
memory is never freed, this is found by valgrind.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15403

Signed-off-by: Jones Syue <jonessyue@qnap.com>
Reviewed-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Wed Jun 28 07:02:34 UTC 2023 on atb-devel-224

(cherry picked from commit afbed653526b572f7309e67ed742a76ef7b2b8ec)

source3/utils/smbget.c

index 5f3ac16b2042be57bca79b3904a72a3db03f3231..227f5c638e1bc58f39028a9492fc0683c26c68da 100644 (file)
@@ -265,6 +265,7 @@ static bool smb_download_dir(const char *base, const char *name, int resume)
                if (!ok) {
                        fprintf(stderr, "Failed to download %s: %s\n",
                                newname, strerror(errno));
+                       free(newname);
                        free(tmpname);
                        return false;
                }