]> git.ipfire.org Git - thirdparty/git.git/commitdiff
fetch_bundle_uri(): drop pointless NULL check
authorJeff King <peff@peff.net>
Sat, 22 Apr 2023 13:56:46 +0000 (09:56 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 24 Apr 2023 18:09:16 +0000 (11:09 -0700)
We check if "uri" is NULL, but it cannot be since we'd have segfaulted
earlier in the function when we unconditionally called xstrdup() on it.

In theory we might want to soften that xstrdup() to handle this case,
but even before the code which added it via c23f592117 (bundle-uri:
fetch a list of bundles, 2022-10-12), we'd have fed NULL to
fetch_bundle_uri_internal(), which would also segfault.

The extra check isn't hurting anything, but it does cause Coverity to
complain, and it may mislead somebody reading the code into thinking
that a NULL uri is something we're prepared to handle.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
bundle-uri.c

index e2b267cc02bb1a46f349ae06a406923d438462c8..f22490a2ca0f8867f3b7ca70b0f041feb4313682 100644 (file)
@@ -795,10 +795,10 @@ int fetch_bundle_uri(struct repository *r, const char *uri,
        init_bundle_list(&list);
 
        /*
-        * Do not fetch a NULL or empty bundle URI. An empty bundle URI
+        * Do not fetch an empty bundle URI. An empty bundle URI
         * could signal that a configured bundle URI has been disabled.
         */
-       if (!uri || !*uri) {
+       if (!*uri) {
                result = 0;
                goto cleanup;
        }