]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3:utils: Call gfree_all() before exit in smbfilter
authorAndreas Schneider <asn@samba.org>
Tue, 24 Oct 2023 10:03:12 +0000 (12:03 +0200)
committerAndrew Bartlett <abartlet@samba.org>
Wed, 25 Oct 2023 22:23:37 +0000 (22:23 +0000)
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
source3/utils/smbfilter.c

index 12f6589ad688cb0fe39844465fb52de1700fc12b..04dc9094368852ea2f4a345f8b3630ab20e9b93e 100644 (file)
@@ -350,6 +350,7 @@ int main(int argc, char *argv[])
        }
 
        start_filter(desthost);
+       gfree_all();
        TALLOC_FREE(frame);
        return 0;
 }