X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=test-path-utils.c;h=2c0f5a37e8b9051b1db80aa04e9ea763fb8d772b;hb=8e7d1f6d0300b47770930b82a5fc20fec73727c4;hp=a0bcb0e210523124fa977c8bf46667cf25d0335f;hpb=6e13921b4f7adcc7316a76c0c4955b85b1589a65;p=git.git diff --git a/test-path-utils.c b/test-path-utils.c index a0bcb0e21..2c0f5a37e 100644 --- a/test-path-utils.c +++ b/test-path-utils.c @@ -3,7 +3,7 @@ int main(int argc, char **argv) { if (argc == 3 && !strcmp(argv[1], "normalize_absolute_path")) { - char *buf = xmalloc(strlen(argv[2])+1); + char *buf = xmalloc(PATH_MAX + 1); int rv = normalize_absolute_path(buf, argv[2]); assert(strlen(buf) == rv); puts(buf);