diff -druN servGL/hwglx/common/x11_symbols.c servGL/hwglx/common/x11_symbols.c --- servGL/hwglx/common/x11_symbols.c Mon Jan 17 09:11:02 2000 +++ servGL/hwglx/common/x11_symbols.c Sun Nov 5 19:22:44 2000 @@ -92,9 +92,8 @@ static void *my_dlsym(void *handle, const char *name) { void *tmp = dlsym(handle, name); - char *error; - if ((error = dlerror()) != 0) { - fputs(error, stderr); + if (tmp == NULL) { + fputs(dlerror(), stderr); any_error = 1; return 0; }