X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=builtin%2Fpush.c;h=a2cc9fdea1b22739681c26ee3723058c91018d81;hb=d1ea896290629185dc0bf4efa3469b410bd41313;hp=f4358b9d230f6d8d7a9a67fdfbc60279c5ec71ee;hpb=3ecaa3b6a5f707617ea610d727c696f43f8b2f0b;p=git.git diff --git a/builtin/push.c b/builtin/push.c index f4358b9d2..a2cc9fdea 100644 --- a/builtin/push.c +++ b/builtin/push.c @@ -22,13 +22,13 @@ static int progress; static const char **refspec; static int refspec_nr; +static int refspec_alloc; static void add_refspec(const char *ref) { - int nr = refspec_nr + 1; - refspec = xrealloc(refspec, nr * sizeof(char *)); - refspec[nr-1] = ref; - refspec_nr = nr; + refspec_nr++; + ALLOC_GROW(refspec, refspec_nr, refspec_alloc); + refspec[refspec_nr-1] = ref; } static void set_refspecs(const char **refs, int nr)