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

s3-libsmb: fix some uninitialized variables.

Volker, please check.

Guenther
This commit is contained in:
Günther Deschner
2010-08-18 18:25:20 +02:00
parent 9b8f7a2a01
commit f6ac919a91

View File

@ -618,10 +618,10 @@ static void cli_list_trans_done(struct tevent_req *subreq)
int ff_searchcount;
bool ff_eos;
char *p, *p2;
uint32_t resume_key;
uint32_t resume_key = 0;
int i;
DATA_BLOB last_name_raw;
struct file_info *finfo;
struct file_info *finfo = NULL;
size_t nlen, param_len;
min_param = (state->first ? 6 : 4);