This avoids some magic numbers (and we'll be adding more
similar calls in a minute).
Signed-off-by: Jeff King <redacted>
Signed-off-by: Junio C Hamano <redacted>
char *to_free = NULL;
struct stat st;
- if (starts_with(arg, ":/")) {
- if (arg[2] == '\0') /* ":/" is root dir, always exists */
+ if (skip_prefix(arg, ":/", &arg)) {
+ if (!*arg) /* ":/" is root dir, always exists */
return 1;
- arg += 2;
prefix = NULL;
}