Update of /cvsroot/java-game-lib/LWJGL/src/native/common
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4320/common
Modified Files:
org_lwjgl_openal_ALC.c
Log Message:
Fixed a potentially uninitialized return value in ALC.c
Index: org_lwjgl_openal_ALC.c
===================================================================
RCS file: /cvsroot/java-game-lib/LWJGL/src/native/common/org_lwjgl_openal_ALC.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- org_lwjgl_openal_ALC.c 2 Feb 2006 22:33:17 -0000 1.10
+++ org_lwjgl_openal_ALC.c 23 Feb 2006 19:22:00 -0000 1.11
@@ -345,7 +345,7 @@
JNIEXPORT jobjectArray JNICALL Java_org_lwjgl_openal_ALC_ngetImplementations(JNIEnv *env, jclass clazz) {
jclass strcls;
- jarray strarr;
+ jarray strarr = NULL;
jstring str;
char *deviceList;
|