Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: binary MIME-Version: 1.0 X-Mailer: MIME-tools 5.507 (Entity 5.507) From: ghudson@mit.edu Subject: git commit RT-Send-CC: X-RT-Original-Encoding: iso-8859-1 Content-Length: 942 Fix memory leak in gss_add_cred() creation case If gss_add_cred() is called with no input_cred_handle, it creates a new credential with one element. At the end of the function, use the created credential as the output container, rather than creating a second one and leaking the first. Add a test program for gss_add_cred() and run it. (cherry picked from commit 9e32161dc307a323fd36fd59e252583fe7b90526) https://github.com/krb5/krb5/commit/e058595730c57032b84bacbb00806a95fd5eb470 Author: Greg Hudson Commit: e058595730c57032b84bacbb00806a95fd5eb470 Branch: krb5-1.15 .gitignore | 1 + src/lib/gssapi/mechglue/g_acquire_cred.c | 3 + src/tests/gssapi/Makefile.in | 40 ++++++------ src/tests/gssapi/t_add_cred.c | 98 ++++++++++++++++++++++++++++++ src/tests/gssapi/t_gssapi.py | 6 +- 5 files changed, 127 insertions(+), 21 deletions(-)