summaryrefslogtreecommitdiff
path: root/source3/registry/regfio.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2005-05-27 13:58:04 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:57:00 -0500
commitaf52df2f1fde76b518bf946e396bc29869aa6964 (patch)
tree4d717fa0547d95a9bc415e78e1f12a36bf698117 /source3/registry/regfio.c
parentd5e79de59561e614fce79a9460c3b2caaa459673 (diff)
downloadsamba-af52df2f1fde76b518bf946e396bc29869aa6964.tar.gz
samba-af52df2f1fde76b518bf946e396bc29869aa6964.tar.bz2
samba-af52df2f1fde76b518bf946e396bc29869aa6964.zip
r7020: fixing printer ace values and getting rid of false compiler warning about unitialized variable
(This used to be commit 3a91b20e4bcc78c91932e6c4394b3f6f153b2ff5)
Diffstat (limited to 'source3/registry/regfio.c')
-rw-r--r--source3/registry/regfio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/registry/regfio.c b/source3/registry/regfio.c
index 6049b9bdd6..dc69b3f9ed 100644
--- a/source3/registry/regfio.c
+++ b/source3/registry/regfio.c
@@ -1679,7 +1679,7 @@ static int hashrec_cmp( REGF_HASH_REC *h1, REGF_HASH_REC *h2 )
SEC_DESC *sec_desc, REGF_NK_REC *parent )
{
REGF_NK_REC *nk;
- REGF_HBIN *vlist_hbin;
+ REGF_HBIN *vlist_hbin = NULL;
uint32 size;
if ( !(nk = TALLOC_ZERO_P( file->mem_ctx, REGF_NK_REC )) )