diff options
author | Volker Lendecke <vlendec@samba.org> | 2003-08-15 01:46:09 +0000 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2003-08-15 01:46:09 +0000 |
commit | d8ab44685994b302bb46eed9001c72c194d13dc8 (patch) | |
tree | 5da5a0d685abff1566725c5ac45480fdb23da2bd /source/libads/authdata.c | |
parent | a6a39c61e8228c8b3b7552ab3c61ec3a6a639143 (diff) | |
download | samba-d8ab44685994b302bb46eed9001c72c194d13dc8.tar.gz |
Fix memleaks.
Currently I'm compiling against MIT Kerberos 1.2.8.
Anthony, you said you have a heimdal installation available. Could you
please compile this stuff with krb and check it with valgrind?
Thanks,
Volker
Diffstat (limited to 'source/libads/authdata.c')
-rw-r--r-- | source/libads/authdata.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/libads/authdata.c b/source/libads/authdata.c index 50a9ef27189..f78a4ad707c 100644 --- a/source/libads/authdata.c +++ b/source/libads/authdata.c @@ -39,6 +39,7 @@ static DATA_BLOB unwrap_pac(DATA_BLOB *auth_data) asn1_end_tag(&data); asn1_end_tag(&data); asn1_end_tag(&data); + asn1_free(&data); return pac_contents; } @@ -603,6 +604,8 @@ PAC_DATA *decode_pac_data(DATA_BLOB *auth_data, TALLOC_CTX *ctx) prs_copy_data_in(&ps, pac_data_blob.data, pac_data_blob.length); prs_set_offset(&ps, 0); + data_blob_free(&pac_data_blob); + pac_data = (PAC_DATA *) talloc_zero(ctx, sizeof(PAC_DATA)); pac_io_pac_data("pac data", pac_data, &ps, 0); |