summaryrefslogtreecommitdiffstats
path: root/source/registry
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2005-05-27 13:58:04 +0000
committerGerald Carter <jerry@samba.org>2005-05-27 13:58:04 +0000
commitf78fb06e7d203cfb313817d85da3060f056b496b (patch)
tree23bea63d7f9cdf32db35f411347cb1b883a3f0e1 /source/registry
parent0366e37c7b06eff8b11d9fb710eb29c864d7ad4c (diff)
downloadsamba-f78fb06e7d203cfb313817d85da3060f056b496b.tar.gz
samba-f78fb06e7d203cfb313817d85da3060f056b496b.tar.xz
samba-f78fb06e7d203cfb313817d85da3060f056b496b.zip
r7020: fixing printer ace values and getting rid of false compiler warning about unitialized variable
Diffstat (limited to 'source/registry')
-rw-r--r--source/registry/regfio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/registry/regfio.c b/source/registry/regfio.c
index 6049b9bdd6e..dc69b3f9ed5 100644
--- a/source/registry/regfio.c
+++ b/source/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 )) )