diff options
author | Matthieu Bouron <matthieu.bouron@stupeflix.com> | 2016-03-10 18:14:53 +0100 |
---|---|---|
committer | Matthieu Bouron <matthieu.bouron@stupeflix.com> | 2016-03-10 18:17:28 +0100 |
commit | 8d0a2180582005e91d9f14ae3dd219a882277c23 (patch) | |
tree | 041583deeb6639c69f02f746ec3d1c60e15b6bc3 /libavcodec/ffjni.c | |
parent | ac1974652b9c2a199af859effc57facdf3d9cda7 (diff) | |
download | ffmpeg-8d0a2180582005e91d9f14ae3dd219a882277c23.tar.gz |
lavc/ffjni: fix uninitialized variable
Diffstat (limited to 'libavcodec/ffjni.c')
-rw-r--r-- | libavcodec/ffjni.c | 2 |
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); |