]> git.ipfire.org Git - thirdparty/git.git/commit
pack-objects: limit scope in 'add_object_entry_from_pack()'
authorTaylor Blau <me@ttaylorr.com>
Mon, 23 Jun 2025 22:32:13 +0000 (18:32 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 23 Jun 2025 22:41:36 +0000 (15:41 -0700)
commit9809d4ae9f5b577e0afd18082b095414ce046c00
treec5f1d1fe54ac1493d8a9bf2c7a5a2fd2919634f2
parent798ddd947ffe9d608d9aa5803dc7c409834e7159
pack-objects: limit scope in 'add_object_entry_from_pack()'

In add_object_entry_from_pack() we declare 'revs' (given to us through
the miscellaneous context argument) earlier in the "if (p)" conditional
than is necessary.  Move it down as far as it can go to reduce its
scope.

Signed-off-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/pack-objects.c