You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
453 B
15 lines
453 B
15 years ago
|
diff --git a/bin/override.c b/bin/override.c
|
||
|
index 54ca687..5e72918 100644
|
||
|
--- a/bin/override.c
|
||
|
+++ b/bin/override.c
|
||
|
@@ -297,7 +297,7 @@ int (*XSetIOErrorHandler (int (*handler) (Display *))) (Display *)
|
||
|
|
||
|
void *dlopen (const char *path, int flag)
|
||
|
{
|
||
|
- if (strstr (path, "/gui_platform/libkde.so"))
|
||
|
+ if (path && strstr (path, "/gui_platform/libkde.so"))
|
||
|
return NULL; /* Oh no, not that one! */
|
||
|
return CALL(dlopen, path, flag);
|
||
|
}
|
||
|
|