From: Jeff King Date: Tue, 25 Feb 2025 06:34:21 +0000 (-0500) Subject: unpack_loose_rest(): rewrite return handling for clarity X-Git-Tag: v2.50.0-rc0~127^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1cb2f293f5a594fd5dee8400213bd2f395fbd2bf;p=thirdparty%2Fgit.git unpack_loose_rest(): rewrite return handling for clarity We have a pattern like: if (error1) ...handle error 1... else if (error2) ...handle error 2... else ...return buf... ...free buf and return NULL... This is a little subtle because it is the return in the success block that lets us skip the common error handling. Rewrite this instead to free the buffer in each error path, marking it as NULL, and then all code paths can use the common return. This should make the logic a bit easier to follow. It does mean duplicating the buf cleanup for errors, but it's a single line. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- diff --git a/object-file.c b/object-file.c index 9f6e8504fb..e463b4bad3 100644 --- a/object-file.c +++ b/object-file.c @@ -1348,16 +1348,16 @@ static void *unpack_loose_rest(git_zstream *stream, } } - if (status != Z_STREAM_END) + if (status != Z_STREAM_END) { error(_("corrupt loose object '%s'"), oid_to_hex(oid)); - else if (stream->avail_in) + FREE_AND_NULL(buf); + } else if (stream->avail_in) { error(_("garbage at end of loose object '%s'"), oid_to_hex(oid)); - else - return buf; + FREE_AND_NULL(buf); + } - free(buf); - return NULL; + return buf; } /*