From 93adf70d1a2a3371562606dbda36016e9a15eeaf Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 27 Sep 2010 01:44:06 +0200 Subject: s3: Remove talloc_autofree_context() from receive_unexpected() This is freed in this routine a few lines down --- source3/libsmb/unexpected.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/libsmb') diff --git a/source3/libsmb/unexpected.c b/source3/libsmb/unexpected.c index 17ebcd22ab..6daf61f4af 100644 --- a/source3/libsmb/unexpected.c +++ b/source3/libsmb/unexpected.c @@ -189,8 +189,8 @@ struct packet_struct *receive_unexpected(enum packet_type packet_type, int id, struct tdb_wrap *tdb2; struct receive_unexpected_state state; - tdb2 = tdb_wrap_open(talloc_autofree_context(), - lock_path("unexpected.tdb"), 0, 0, O_RDONLY, 0); + tdb2 = tdb_wrap_open(talloc_tos(), lock_path("unexpected.tdb"), 0, 0, + O_RDONLY, 0); if (!tdb2) return NULL; state.matched_packet = NULL; -- cgit