libeplayer3/output: remove redundant videofd check

Origin commit data
------------------
Branch: master
Commit: 2626355684
Author: martii <m4rtii@gmx.de>
Date: 2014-04-10 (Thu, 10 Apr 2014)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
martii
2014-04-10 20:46:39 +02:00
parent 1c5b69a502
commit 3718731bca

View File

@@ -87,7 +87,7 @@ bool Output::Open()
if (audiofd < 0)
audiofd = open(AUDIODEV, O_RDWR);
if (audiofd < 0 && videofd > -1) {
if (audiofd < 0) {
close(videofd);
videofd = -1;
return false;