2009-08-28 20:30:20 +02:00
|
|
|
Index: xorg-server-1.6.3.901/hw/xfree86/loader/loadmod.c
|
2009-08-04 21:52:16 +02:00
|
|
|
===================================================================
|
2009-08-28 20:30:20 +02:00
|
|
|
--- xorg-server-1.6.3.901.orig/hw/xfree86/loader/loadmod.c
|
|
|
|
+++ xorg-server-1.6.3.901/hw/xfree86/loader/loadmod.c
|
2009-08-04 21:52:16 +02:00
|
|
|
@@ -401,8 +401,8 @@ FindModuleInSubdir(const char *dirpath,
|
2007-01-16 00:16:34 +01:00
|
|
|
while ((direntry = readdir(dir))) {
|
|
|
|
if (direntry->d_name[0] == '.')
|
|
|
|
continue;
|
|
|
|
- if ((stat(direntry->d_name, &stat_buf) == 0) && S_ISDIR(stat_buf.st_mode)) {
|
|
|
|
- snprintf(tmpBuf, PATH_MAX, "%s/%s", dirpath, direntry->d_name);
|
|
|
|
+ snprintf(tmpBuf, PATH_MAX, "%s/%s", dirpath, direntry->d_name);
|
|
|
|
+ if ((stat(tmpBuf, &stat_buf) == 0) && S_ISDIR(stat_buf.st_mode)) {
|
|
|
|
if ((ret = FindModuleInSubdir(tmpBuf, module)))
|
|
|
|
break;
|
|
|
|
continue;
|