Skip to content

Commit

Permalink
Merge pull request #131 from mightbecharles/main
Browse files Browse the repository at this point in the history
Fix deadlock in ffdec.available()
  • Loading branch information
sampsyo authored Nov 18, 2022
2 parents b694c4f + 79e608b commit fb43d0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion audioread/ffdec.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def available():
except OSError:
return False
else:
proc.wait()
proc.communicate()
return proc.returncode == 0


Expand Down

0 comments on commit fb43d0a

Please sign in to comment.