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

lib:replace: Fix resource leak in os2_delete test

Found by covscan

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Andreas Schneider 2021-04-22 15:01:39 +02:00 committed by Jeremy Allison
parent 17294c6bb7
commit 2e973ea5f1

View File

@ -106,6 +106,7 @@ int test_readdir_os2_delete(void)
d = opendir(TESTDIR "/test0.txt"); d = opendir(TESTDIR "/test0.txt");
if (d != NULL) FAILED("opendir() on file succeed"); if (d != NULL) FAILED("opendir() on file succeed");
if (errno != ENOTDIR) FAILED("opendir() on file didn't give ENOTDIR"); if (errno != ENOTDIR) FAILED("opendir() on file didn't give ENOTDIR");
closedir(d);
d = opendir(TESTDIR); d = opendir(TESTDIR);