mirror of
https://github.com/samba-team/samba.git
synced 2025-02-03 13:47:25 +03:00
s3: Remove two talloc_autofree_context() calls
Both allocated blobs are freed in their routines
This commit is contained in:
parent
997a64f6fb
commit
2d8b65066e
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user