From b5afbb687d9ca0bc15f5dc59498f9d53bd8b4bf1 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 5 Nov 2009 14:29:05 +0100 Subject: s3: Fix the talloc hierarchy in notify_remove_onelevel We want to free the record early, not when talloc_tos() is free'ed. --- source3/smbd/notify_internal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/smbd/notify_internal.c b/source3/smbd/notify_internal.c index 973db7b7b1..3f61de579d 100644 --- a/source3/smbd/notify_internal.c +++ b/source3/smbd/notify_internal.c @@ -551,7 +551,7 @@ NTSTATUS notify_remove_onelevel(struct notify_context *notify, } rec = notify->db_onelevel->fetch_locked( - notify->db_onelevel, talloc_tos(), + notify->db_onelevel, array, make_tdb_data((uint8_t *)fid, sizeof(*fid))); if (rec == NULL) { DEBUG(10, ("notify_remove_onelevel: fetch_locked for %s failed" -- cgit