4a868fd (pretty: parse the gpg status lines rather than the output, 2013-02-14) made the gpg status lines available to callers and made sure they freed the used space, but missed one spot.
Free the status line buffer also in the remaining spot. Signed-off-by: Michael J Gruber <[email protected]> --- pretty.c | 1 + 1 file changed, 1 insertion(+) diff --git a/pretty.c b/pretty.c index 4f51287..f1e8a70 100644 --- a/pretty.c +++ b/pretty.c @@ -1538,6 +1538,7 @@ void format_commit_message(const struct commit *commit, free(context.commit_encoding); logmsg_free(context.message, commit); free(context.signature_check.gpg_output); + free(context.signature_check.gpg_status); free(context.signature_check.signer); } -- 2.0.0.533.gae2e602 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html

