From 629c611ac413d8ab3e735ad9f256e38f45cb7623 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 10 Feb 2015 09:32:11 -0800 Subject: [PATCH] s3: smbclient: Allinfo leaves the file handle open. https://bugzilla.samba.org/show_bug.cgi?id=11094 Signed-off-by: Jeremy Allison --- source3/client/client.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source3/client/client.c b/source3/client/client.c index 5d70897..1458cf2 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1816,6 +1816,7 @@ static int do_allinfo(const char *name) } TALLOC_FREE(snapshots); + cli_close(cli, fnum); return 0; } -- 2.2.0.rc0.207.ga3a616c