Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Bouron <matthieu.bouron@stupeflix.com>2016-03-10 20:14:53 +0300
committerMatthieu Bouron <matthieu.bouron@stupeflix.com>2016-03-10 20:17:28 +0300
commit8d0a2180582005e91d9f14ae3dd219a882277c23 (patch)
tree041583deeb6639c69f02f746ec3d1c60e15b6bc3 /libavcodec/ffjni.c
parentac1974652b9c2a199af859effc57facdf3d9cda7 (diff)
lavc/ffjni: fix uninitialized variable
Diffstat (limited to 'libavcodec/ffjni.c')
-rw-r--r--libavcodec/ffjni.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ffjni.c b/libavcodec/ffjni.c
index 8333050bab..da13699164 100644
--- a/libavcodec/ffjni.c
+++ b/libavcodec/ffjni.c
@@ -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);