1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-01 21:18:10 +03:00

valid_pol in lsa_query_secret() needed to be initialised to False.

This commit is contained in:
Luke Leighton 0001-01-01 00:00:00 +00:00
parent 5951e16a11
commit 96e358a2f0

View File

@ -108,7 +108,7 @@ BOOL lsa_open_secret(struct cli_state *cli, uint16 fnum,
prs_struct rbuf; prs_struct rbuf;
prs_struct buf; prs_struct buf;
LSA_Q_OPEN_SECRET q_o; LSA_Q_OPEN_SECRET q_o;
BOOL valid_pol; BOOL valid_pol = False;
if (hnd_pol == NULL) return False; if (hnd_pol == NULL) return False;