1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

lavc/ffjni: fix uninitialized variable

This commit is contained in:
Matthieu Bouron 2016-03-10 18:14:53 +01:00
parent ac1974652b
commit 8d0a218058

View File

@ -227,7 +227,7 @@ int ff_jni_exception_get_summary(JNIEnv *env, jthrowable exception, char **error
jclass exception_class = NULL;
jmethodID get_message_id = NULL;
jstring string;
jstring string = NULL;
av_bprint_init(&bp, 0, AV_BPRINT_SIZE_AUTOMATIC);