1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-07 09:49:30 +03:00

r535: Another memleak fix from kawasa_r@itg.hitachi.co.jp

Jeremy.
(This used to be commit 2d52562691)
This commit is contained in:
Jeremy Allison
2004-05-06 23:11:20 +00:00
committed by Gerald (Jerry) Carter
parent 13aa693f35
commit 7b258d284f

View File

@ -276,6 +276,8 @@ static NTSTATUS fetch_cache_seqnum( struct winbindd_domain *domain, time_t now )
domain->sequence_number = IVAL(data.dptr, 0);
domain->last_seq_check = IVAL(data.dptr, 4);
SAFE_FREE(data.dptr);
/* have we expired? */
time_diff = now - domain->last_seq_check;