mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-03-02 11:34:38 +01:00
Fixed a potentially uninitialized return value in ALC.c
This commit is contained in:
parent
cc028c9c2e
commit
55d79e7e55
|
|
@ -345,7 +345,7 @@ static jint JNICALL Java_org_lwjgl_openal_ALC_nalcGetEnumValue (JNIEnv *env, jcl
|
|||
|
||||
JNIEXPORT jobjectArray JNICALL Java_org_lwjgl_openal_ALC_ngetImplementations(JNIEnv *env, jclass clazz) {
|
||||
jclass strcls;
|
||||
jarray strarr;
|
||||
jarray strarr = NULL;
|
||||
jstring str;
|
||||
|
||||
char *deviceList;
|
||||
|
|
|
|||
Loading…
Reference in a new issue