diff options
author | Gerald Carter <jerry@samba.org> | 2005-05-27 13:58:04 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:57:00 -0500 |
commit | af52df2f1fde76b518bf946e396bc29869aa6964 (patch) | |
tree | 4d717fa0547d95a9bc415e78e1f12a36bf698117 /source3/registry | |
parent | d5e79de59561e614fce79a9460c3b2caaa459673 (diff) | |
download | samba-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')
-rw-r--r-- | source3/registry/regfio.c | 2 |
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 )) ) |