From 094afe614b6282eae47c31ee6ad015a4b0ed80ba Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 24 Sep 2008 15:40:55 -0700 Subject: fixed uninitialised variable bug --- source4/libcli/clideltree.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/clideltree.c') diff --git a/source4/libcli/clideltree.c b/source4/libcli/clideltree.c index d59a03f194..28563d918e 100644 --- a/source4/libcli/clideltree.c +++ b/source4/libcli/clideltree.c @@ -91,6 +91,7 @@ int smbcli_deltree(struct smbcli_tree *tree, const char *dname) dstate.failed = false; /* it might be a file */ + status = smbcli_unlink(tree, dname); if (NT_STATUS_IS_OK(smbcli_unlink(tree, dname))) { return 1; } -- cgit