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

s3-cli: fix uninitialized variable.

Volker, please check.

Guenther
This commit is contained in:
Günther Deschner
2010-08-19 14:02:22 +02:00
parent 28ba023b4c
commit 4349027b63

View File

@ -802,7 +802,7 @@ NTSTATUS cli_list_trans(struct cli_state *cli, const char *mask,
struct event_context *ev;
struct tevent_req *req;
int i, num_finfo;
struct file_info *finfo;
struct file_info *finfo = NULL;
NTSTATUS status = NT_STATUS_NO_MEMORY;
if (cli_has_async_calls(cli)) {