1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-26 09:26:37 +02:00

skip_prefix(): scan prefix only once

Signed-off-by: David Kastrup <dak@gnu.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
David Kastrup 2014-03-04 00:22:15 +01:00 committed by Junio C Hamano
parent 5f95c9f850
commit ba399c46d9

View File

@ -357,8 +357,11 @@ extern int suffixcmp(const char *str, const char *suffix);
static inline const char *skip_prefix(const char *str, const char *prefix)
{
size_t len = strlen(prefix);
return strncmp(str, prefix, len) ? NULL : str + len;
do {
if (!*prefix)
return str;
} while (*str++ == *prefix++);
return NULL;
}
#if defined(NO_MMAP) || defined(USE_WIN32_MMAP)