diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-10-04 01:35:22 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:39:22 -0500 |
commit | 2c3e4bdadfea9fb29f83e0be9a9cf9a239f3a081 (patch) | |
tree | 1e0253a8b356d1d32eb1736d259922b50b81cc2c | |
parent | c8bec9dd3afac052cf78de281067ff57e256017d (diff) | |
download | samba-2c3e4bdadfea9fb29f83e0be9a9cf9a239f3a081.tar.gz samba-2c3e4bdadfea9fb29f83e0be9a9cf9a239f3a081.tar.bz2 samba-2c3e4bdadfea9fb29f83e0be9a9cf9a239f3a081.zip |
r10704: don't try to free the netlogon pipe twice
(This used to be commit 2c3a9f04db5d61305f4eca8b44e33c2dd15a6dc4)
-rw-r--r-- | source4/winbind/wb_samba3_cmd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/winbind/wb_samba3_cmd.c b/source4/winbind/wb_samba3_cmd.c index d0c38d607e..60ad4eb164 100644 --- a/source4/winbind/wb_samba3_cmd.c +++ b/source4/winbind/wb_samba3_cmd.c @@ -103,6 +103,7 @@ NTSTATUS wbsrv_samba3_check_machacc(struct wbsrv_samba3_call *s3call) if (service->netlogon != NULL) { talloc_free(service->netlogon); + service->netlogon = NULL; } state = talloc(s3call, struct check_machacc_state); |