Yet another ps3 plugin fix.

Returning an uninitialized pointer... ouch. Hopefully the last one.
This commit is contained in:
Bill Currie 2012-08-17 10:24:41 +09:00
parent cbaad33638
commit a1a2060583

View file

@ -120,7 +120,7 @@ pi_get_symbol (void *handle, const char *name)
static void * static void *
pi_open_lib (const char *name, int global_syms) pi_open_lib (const char *name, int global_syms)
{ {
void *dlhand; void *dlhand = 0;
#ifdef HAVE_DLOPEN #ifdef HAVE_DLOPEN
# ifdef __OpenBSD__ # ifdef __OpenBSD__
int flags = RTLD_LAZY; int flags = RTLD_LAZY;