aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2017-11-26 09:59:55 -0800
committerChris Robinson <[email protected]>2017-11-26 09:59:55 -0800
commit5993ef0baa9096ca62d8bca0f17b95c5468ffde3 (patch)
tree110865d55b50ccc6e90a74dafff610ffd9f137f6 /Alc/ALc.c
parentd96be76875fd93da8ecb0d7a7096614042e3e02a (diff)
It's getFactory that may be NULL, not its return value...
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 82da5143..4c6c9049 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -1290,15 +1290,16 @@ static void alc_deinit(void)
************************************************/
static void ProbeDevices(al_string *list, struct BackendInfo *backendinfo, enum DevProbe type)
{
- ALCbackendFactory *factory;
-
DO_INITCONFIG();
LockLists();
alstr_clear(list);
- if((factory=backendinfo->getFactory()) != NULL)
+ if(backendinfo->getFactory)
+ {
+ ALCbackendFactory *factory = backendinfo->getFactory();
V(factory,probe)(type);
+ }
UnlockLists();
}