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

r11424: Fix an uninitialized variable warning

(This used to be commit fed26bc4fd)
This commit is contained in:
Volker Lendecke 2005-10-31 21:37:36 +00:00 committed by Gerald (Jerry) Carter
parent 4bb85c2939
commit 8f91998e04

View File

@ -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);