regedit_valuelist.c: Coverity fix; Initialize a variable.
authorChristopher R. Hertel (crh) <crh@samba.org>
Fri, 14 Feb 2014 17:41:24 +0000 (11:41 -0600)
committerJeremy Allison <jra@samba.org>
Fri, 14 Feb 2014 18:47:22 +0000 (10:47 -0800)
commit938bbff1243400401d534174301939fdd2c59cb9
tree9c110a43c8cd7b0d1e772df181da6f5bd7cd30cf
parente0bf930f23fe20ee00d0006a5f6c2ba1a8f592a0
regedit_valuelist.c: Coverity fix; Initialize a variable.

The <tmp> variable is tested at the end of the function to determine the
return value, but <tmp> is never initialized and there are conditions
under which it may be tested before a value is set.

This patch initializes <tmp> to NULL, which means that WERR_NOMEM will
be returned if the registry lookups fail.

CID:  1168007

Signed-off-by: Christopher R. Hertel (crh) <crh@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/utils/regedit_valuelist.c