summaryrefslogtreecommitdiff
path: root/lib/torture
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-10-13 19:42:45 +1100
committerAndrew Tridgell <tridge@samba.org>2010-10-13 11:00:04 +0000
commit261628d1e49921eac143f8ad0167620f95db1a33 (patch)
tree30b7e8a3497a65bd1c56f4c0d50a76a8920f034e /lib/torture
parentb5ffdb6f9c7e003223614baac18f03fe02e7d782 (diff)
downloadsamba-261628d1e49921eac143f8ad0167620f95db1a33.tar.gz
s4-torture: fixed uninitialised variable error
ret is uninitialised if the directory is empty
Diffstat (limited to 'lib/torture')
-rw-r--r--lib/torture/torture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/torture/torture.c b/lib/torture/torture.c
index 9d77ab41d1a..1f55cd04a81 100644
--- a/lib/torture/torture.c
+++ b/lib/torture/torture.c
@@ -96,7 +96,7 @@ _PUBLIC_ NTSTATUS torture_temp_dir(struct torture_context *tctx,
static int local_deltree(const char *path)
{
- int ret;
+ int ret = 0;
struct dirent *dirent;
DIR *dir = opendir(path);
if (!dir) {