From d44ae9e229c67f0bf230c0d64d903a55f592f248 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 23 Apr 2000 07:42:13 +0000 Subject: insure caught an uninitialised memory reference - ensure it starts as zero (This used to be commit 53077295b76487a6eafc6b14b69a91074a02aa35) --- source3/smbd/nttrans.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c index c82a8074d9..ca9522ecfc 100644 --- a/source3/smbd/nttrans.c +++ b/source3/smbd/nttrans.c @@ -1605,6 +1605,8 @@ BOOL process_pending_change_notify_queue(time_t t) uint16 vuid = (lp_security() == SEC_SHARE) ? UID_FIELD_INVALID : SVAL(cnbp->request_buf,smb_uid); + ZERO_STRUCT(change_data); + /* * Ensure we don't have any old chain_fsp values * sitting around.... -- cgit