From: Noel Power Date: Fri, 14 Oct 2022 10:26:24 +0000 (+0100) Subject: s3/utils: Add missing poptFreeContext X-Git-Tag: talloc-2.4.0~722 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=31d3d10b260f05080ca0a3cf9434aa4704d60739;p=thirdparty%2Fsamba.git s3/utils: Add missing poptFreeContext BUG: https://bugzilla.samba.org/show_bug.cgi?id=15205 Signed-off-by: Noel Power Reviewed-by: Ralph Boehme --- diff --git a/source3/utils/mdsearch.c b/source3/utils/mdsearch.c index ac0b75fca51..ab48e366a0a 100644 --- a/source3/utils/mdsearch.c +++ b/source3/utils/mdsearch.c @@ -242,6 +242,7 @@ int main(int argc, char **argv) return 0; fail: + poptFreeContext(pc); TALLOC_FREE(frame); return 1; }