Skip to content

Commit 5fab134

Browse files
Merge branch 'hotfix/v0.2.5'
2 parents 2792080 + c53e52b commit 5fab134

File tree

1 file changed

+1
-0
lines changed
  • FFmpegAndroid/src/main/java/com/github/hiteshsondhi88/libffmpeg

1 file changed

+1
-0
lines changed

FFmpegAndroid/src/main/java/com/github/hiteshsondhi88/libffmpeg/Util.java

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ static boolean killAsync(AsyncTask asyncTask) {
6363

6464
static boolean isProcessCompleted(Process process) {
6565
try {
66+
if (process == null) return true;
6667
process.exitValue();
6768
return true;
6869
} catch (IllegalThreadStateException e) {

0 commit comments

Comments
 (0)