mirror of
https://github.com/yawut/SDL.git
synced 2026-05-06 21:35:41 -05:00
Date: Mon, 4 Jun 2007 06:17:59 +0000 (UTC)
From: George Gensure <werkt0@gmail.com> Subject: [SDL] error removal patch for SDL_x11dyn.c I found that calling SDL_GetError when an error hasn't necessarily occurred is still reporting problems from loadso regarding dynamic functions in X11. I've added the following to my local copy to avoid revealing the 'many library lookup' approach adopted by x11dyn.c: --HG-- branch : SDL-1.2
This commit is contained in:
parent
49b8d7cf26
commit
1192ca93d5
|
|
@ -73,6 +73,11 @@ static void X11_GetSym(const char *fnname, int *rc, void **fn)
|
|||
}
|
||||
}
|
||||
|
||||
if (*fn != NULL)
|
||||
SDL_ClearError();
|
||||
else
|
||||
SDL_SetError("Failed to load function %s from x11libs", fnname);
|
||||
|
||||
#if DEBUG_DYNAMIC_X11
|
||||
if (*fn != NULL)
|
||||
printf("X11: Found '%s' in %s (%p)\n", fnname, x11libs[i].libname, *fn);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user