From: Brian Gesiak Date: Mon, 26 May 2014 15:33:50 +0000 (+0900) Subject: http-push.c: rearrange xcalloc arguments X-Git-Tag: v2.0.3~14^2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f3d51ffde88323fd4a5c18ac19a47cf571f62ae4;p=git http-push.c: rearrange xcalloc arguments xcalloc() takes two arguments: the number of elements and their size. http-push passes the arguments in reverse order, passing the size of a repo, followed by the number to allocate. Rearrange them so they are in the correct order. Signed-off-by: Brian Gesiak Signed-off-by: Junio C Hamano --- diff --git a/http-push.c b/http-push.c index f2c56c8454..de00d1693a 100644 --- a/http-push.c +++ b/http-push.c @@ -1732,7 +1732,7 @@ int main(int argc, char **argv) git_extract_argv0_path(argv[0]); - repo = xcalloc(sizeof(*repo), 1); + repo = xcalloc(1, sizeof(*repo)); argv++; for (i = 1; i < argc; i++, argv++) {