Skip to content
Snippets Groups Projects
Commit 63082ff9 authored by rswindell's avatar rswindell
Browse files

Added comment regading glibc glob() bug work-around.

parent 75bf02a2
No related branches found
No related tags found
No related merge requests found
...@@ -536,7 +536,7 @@ BOOL DLLCALL fexistcase(char *path) ...@@ -536,7 +536,7 @@ BOOL DLLCALL fexistcase(char *path)
int i; int i;
glob_t glb; glob_t glb;
if(path[0]==0) if(path[0]==0) /* work around glibc bug 574274 */
return FALSE; return FALSE;
if(!strchr(path,'*') && !strchr(path,'?') && fnameexist(path)) if(!strchr(path,'*') && !strchr(path,'?') && fnameexist(path))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment