aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-06-19 00:25:45 -0700
committerChris Robinson <[email protected]>2012-06-19 00:25:45 -0700
commitef1f8aa9a003e56c467ab16ac2c2bef551705f7f (patch)
treec470dd6391e5fd1b93122b67a061e9912f2490cc
parenta5ac6eb5247f6489f56cea332fdf73798df7d062 (diff)
Don't needlessly verify a device
-rw-r--r--Alc/ALc.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 2c1076bb..8c4f0d81 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -2316,19 +2316,20 @@ ALC_API ALCvoid* ALC_APIENTRY alcGetProcAddress(ALCdevice *device, const ALCchar
{
ALCvoid *ptr = NULL;
- device = VerifyDevice(device);
-
if(!funcName)
+ {
+ device = VerifyDevice(device);
alcSetError(device, ALC_INVALID_VALUE);
+ if(device) ALCdevice_DecRef(device);
+ }
else
{
ALsizei i = 0;
- while(alcFunctions[i].funcName && strcmp(alcFunctions[i].funcName,funcName) != 0)
+ while(alcFunctions[i].funcName && strcmp(alcFunctions[i].funcName, funcName) != 0)
i++;
ptr = alcFunctions[i].address;
}
- if(device)
- ALCdevice_DecRef(device);
+
return ptr;
}