]> git.ipfire.org Git - thirdparty/git.git/commitdiff
object-file: convert 'switch' back to 'if'
authorDerrick Stolee <derrickstolee@github.com>
Mon, 16 May 2022 14:53:27 +0000 (10:53 -0400)
committerJunio C Hamano <gitster@pobox.com>
Tue, 17 May 2022 00:28:02 +0000 (17:28 -0700)
This switch statement was recently added to make it clear that
unpack_loose_header() returns an enum value, not an int. This adds
complications for future developers if that enum gains new values, since
that developer would need to add a case statement to this switch for
little real value.

Instead, we can revert back to an 'if' statement, but make the enum
explicit by using "!= ULHR_OK" instead of assuming it has the numerical
value zero.

Co-authored-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Derrick Stolee <derrickstolee@github.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
object-file.c

index b5d1d12b68a704a2934a339cab336a70df75b718..52e4ae1b5f0565105084c25fa46f83b79b8dfbba 100644 (file)
@@ -2623,12 +2623,8 @@ int read_loose_object(const char *path,
                goto out;
        }
 
-       switch (unpack_loose_header(&stream, map, mapsize, hdr, sizeof(hdr),
-                                   NULL)) {
-       case ULHR_OK:
-               break;
-       case ULHR_BAD:
-       case ULHR_TOO_LONG:
+       if (unpack_loose_header(&stream, map, mapsize, hdr, sizeof(hdr),
+                               NULL) != ULHR_OK) {
                error(_("unable to unpack header of %s"), path);
                goto out;
        }