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
1 changed files with 1 additions and 1 deletions

View File

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