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 used to be commit 96e358a2f0)
This commit is contained in:
Luke Leighton 1999-03-19 15:39:43 +00:00
parent 55bce9e30e
commit f19e894577

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;