From f6ac919a91663a97fbc27fb8430c73e13bf03a55 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 18 Aug 2010 18:25:20 +0200 Subject: s3-libsmb: fix some uninitialized variables. Volker, please check. Guenther --- source3/libsmb/clilist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3') diff --git a/source3/libsmb/clilist.c b/source3/libsmb/clilist.c index 29b16cb1c5..853d25d8ca 100644 --- a/source3/libsmb/clilist.c +++ b/source3/libsmb/clilist.c @@ -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); -- cgit