Fixed a potentially uninitialized return value in ALC.c

This commit is contained in:
Elias Naur 2006-02-23 19:22:00 +00:00
parent cc028c9c2e
commit 55d79e7e55
1 changed files with 1 additions and 1 deletions

View File

@ -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;