]> git.ipfire.org Git - thirdparty/git.git/blobdiff - remote.c
Rewrite dynamic structure initializations to runtime assignment
[thirdparty/git.git] / remote.c
index c70181cdc621b27ed02aba17b3e4f7ab64518e9f..ade04246e06ebe52074888790486e88108bc1d76 100644 (file)
--- a/remote.c
+++ b/remote.c
@@ -657,10 +657,9 @@ static struct refspec *parse_refspec_internal(int nr_refspec, const char **refsp
 
 int valid_fetch_refspec(const char *fetch_refspec_str)
 {
-       const char *fetch_refspec[] = { fetch_refspec_str };
        struct refspec *refspec;
 
-       refspec = parse_refspec_internal(1, fetch_refspec, 1, 1);
+       refspec = parse_refspec_internal(1, &fetch_refspec_str, 1, 1);
        free_refspecs(refspec, 1);
        return !!refspec;
 }