1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-27 04:55:04 +03:00

Yet Another Windows Debugging Remote Patch From CVS Hell, Daniel

This commit is contained in:
Daniel Veillard 2005-07-04 16:31:10 +00:00
parent 89074392a2
commit 9e09c1441f

View File

@ -130,7 +130,7 @@ static int glob(const char *pattern, int flags,
goto done;
ret->gl_pathc++;
while(FindNextFileA(hFind, &FindFileData)) {
if (!strstr(FindFileData.cFileName, "/."))
if (strstr(FindFileData.cFileName, "/."))
continue;
if (ret->gl_pathc + 2 > nb_paths) {
char **tmp = realloc(ret->gl_pathv, nb_paths * 2 * sizeof(char *));