diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-03-09 03:44:25 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-03-09 04:28:37 +0100 |
commit | 89862cd73401ecf1f984f93e492bf4068bc001c3 (patch) | |
tree | 9288b0eb7f0d03c2b929446360c5a9371b544c22 /libavcodec/ffjni.c | |
parent | b60dfae7af65c4c7d255ef599352f2c54964303d (diff) | |
download | ffmpeg-89862cd73401ecf1f984f93e492bf4068bc001c3.tar.gz |
avcodec/ffjni: Fix ;;
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
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 a1fbb0a6e8..19a4475d90 100644 --- a/libavcodec/ffjni.c +++ b/libavcodec/ffjni.c @@ -192,7 +192,7 @@ char *ff_jni_jstring_to_utf_chars(JNIEnv *env, jstring string, void *log_ctx) if ((*env)->ExceptionCheck(env)) { (*env)->ExceptionClear(env); av_log(log_ctx, AV_LOG_ERROR, "String.releaseStringUTFChars() threw an exception\n"); - return NULL;; + return NULL; } return ret; |