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

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

This commit is contained in:
Luke Leighton -
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 buf;
LSA_Q_OPEN_SECRET q_o;
BOOL valid_pol;
BOOL valid_pol = False;
if (hnd_pol == NULL) return False;