diff options
author | Volker Lendecke <vlendec@samba.org> | 2005-10-31 21:37:36 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:45:36 -0500 |
commit | 8f91998e0437b3481c095c7fcb6fca79d8b405df (patch) | |
tree | 0a4f822bc314c481894568fdc907a212532d83c4 | |
parent | 4bb85c2939c879db566e117f6c1daa22377c0e4e (diff) | |
download | samba-8f91998e0437b3481c095c7fcb6fca79d8b405df.tar.gz samba-8f91998e0437b3481c095c7fcb6fca79d8b405df.tar.bz2 samba-8f91998e0437b3481c095c7fcb6fca79d8b405df.zip |
r11424: Fix an uninitialized variable warning
(This used to be commit fed26bc4fdb47b5bd1aaa6374b09252c239bbac4)
-rw-r--r-- | source4/libcli/smb_composite/fetchfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/smb_composite/fetchfile.c b/source4/libcli/smb_composite/fetchfile.c index 1891ee956c..a885aaa911 100644 --- a/source4/libcli/smb_composite/fetchfile.c +++ b/source4/libcli/smb_composite/fetchfile.c @@ -90,7 +90,7 @@ static NTSTATUS fetchfile_read(struct composite_context *c, static void fetchfile_state_handler(struct composite_context *c) { struct fetchfile_state *state; - NTSTATUS status; + NTSTATUS status = NT_STATUS_UNSUCCESSFUL; state = talloc_get_type(c->private_data, struct fetchfile_state); |