diff options
author | Erik Faye-Lund <kusmabite@gmail.com> | 2010-11-23 19:38:28 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-11-23 16:06:47 -0800 |
commit | e7772600e94146ddbf5ef6b08d0ea7d6fc8fbcad (patch) | |
tree | 44a5d87517b14a3a2711ed0f9ba6470d31932379 /compat | |
parent | 9585ed519c59d5ac46f8e12b339220cdd0567b7d (diff) | |
download | git-e7772600e94146ddbf5ef6b08d0ea7d6fc8fbcad.tar.gz |
msvc: opendir: handle paths ending with a slash
Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat')
-rw-r--r-- | compat/msvc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compat/msvc.c b/compat/msvc.c index 199eb220f4..fdbfb70a62 100644 --- a/compat/msvc.c +++ b/compat/msvc.c @@ -23,6 +23,8 @@ DIR *opendir(const char *name) /* check that the pattern won't be too long for FindFirstFileA */ len = strlen(name); + if (is_dir_sep(name[len - 1])) + len--; if (len + 2 >= MAX_PATH) { errno = ENAMETOOLONG; return NULL; |