mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-31 05:00:35 +00:00
Yet another ps3 plugin fix.
Returning an uninitialized pointer... ouch. Hopefully the last one.
This commit is contained in:
parent
cbaad33638
commit
a1a2060583
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue