1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-22 16:23:49 +03:00

r11424: Fix an uninitialized variable warning

This commit is contained in:
Volker Lendecke
2005-10-31 21:37:36 +00:00
committed by Gerald (Jerry) Carter
parent a043ef33dc
commit fed26bc4fd

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