1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

s4: free popt context in client

If done with popt context it should be free'd.

Signed-off-by: Swen Schillig <swen@linux.ibm.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Ralph Böhme <slow@samba.org>
This commit is contained in:
Swen Schillig 2019-08-19 14:29:22 +02:00 committed by Andrew Bartlett
parent 42123c11c4
commit 72d3604a9c

View File

@ -689,6 +689,8 @@ int main(int argc, const char ** argv)
CatchSignal(SIGINT, dd_handle_signal);
CatchSignal(SIGUSR1, dd_handle_signal);
rc = copy_files(ev, cmdline_lp_ctx);
poptFreeContext(pctx);
talloc_free(ev);
return rc;
}