From 432f843ffbc0bc0b14c0501b26a10e450c5b5fcc Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Mon, 8 Oct 2018 15:43:02 -0400 Subject: [PATCH 23/25] merge into clang: more Memory leaks --- src/getcert.c | 2 +- src/submit-x.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/getcert.c b/src/getcert.c index bbc45479..4713dd15 100644 --- a/src/getcert.c +++ b/src/getcert.c @@ -4040,7 +4040,7 @@ thumbprint(const char *s, SECOidTag tag, int bits) if (length == 0) { goto done; } - u = malloc(length); + u = malloc(length+1); if (u == NULL) { free(t); goto done; diff --git a/src/submit-x.c b/src/submit-x.c index 58d007ef..467e67e4 100644 --- a/src/submit-x.c +++ b/src/submit-x.c @@ -43,7 +43,7 @@ static char * get_error_message(krb5_context ctx, krb5_error_code kcode) { - const char *ret; + char *ret; #ifdef HAVE_KRB5_GET_ERROR_MESSAGE if (ctx) { const char *msg = krb5_get_error_message(ctx, kcode); -- 2.21.0