From 2d8b65066e632c1a96b150e0cb5f7c361471ac31 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 25 Sep 2010 16:20:11 -0700 Subject: s3: Remove two talloc_autofree_context() calls Both allocated blobs are freed in their routines --- source3/libsmb/clikrb5.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/libsmb/clikrb5.c b/source3/libsmb/clikrb5.c index 704bcb929e..5d51a5b19c 100644 --- a/source3/libsmb/clikrb5.c +++ b/source3/libsmb/clikrb5.c @@ -355,7 +355,7 @@ bool unwrap_edata_ntstatus(TALLOC_CTX *mem_ctx, } asn1_start_tag(data, ASN1_CONTEXT(2)); - asn1_read_OctetString(data, talloc_autofree_context(), &edata_contents); + asn1_read_OctetString(data, talloc_tos(), &edata_contents); asn1_end_tag(data); asn1_end_tag(data); asn1_end_tag(data); @@ -398,7 +398,7 @@ bool unwrap_pac(TALLOC_CTX *mem_ctx, DATA_BLOB *auth_data, DATA_BLOB *unwrapped_ asn1_end_tag(data); asn1_start_tag(data, ASN1_CONTEXT(1)); - asn1_read_OctetString(data, talloc_autofree_context(), &pac_contents); + asn1_read_OctetString(data, talloc_tos(), &pac_contents); asn1_end_tag(data); asn1_end_tag(data); asn1_end_tag(data); -- cgit