diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-10-06 15:14:41 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-10-06 15:14:41 +0200 |
commit | 5011616a3eb1bb612d2e7b6c71f60c8bb7cf7c2c (patch) | |
tree | ad545afa0338970c09aef3d9171bcbb91a53112a /dvbapi.c | |
parent | 8585e08a0f07bb0f9bcd49a775ff9836dbcf863b (diff) | |
download | vdr-5011616a3eb1bb612d2e7b6c71f60c8bb7cf7c2c.tar.gz vdr-5011616a3eb1bb612d2e7b6c71f60c8bb7cf7c2c.tar.bz2 |
Fixed checking for valid video device when setting the video mode
Diffstat (limited to 'dvbapi.c')
-rw-r--r-- | dvbapi.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,7 +7,7 @@ * DVD support initially written by Andreas Schultz <aschultz@warp10.net> * based on dvdplayer-0.5 by Matjaz Thaler <matjaz.thaler@guest.arnes.si> * - * $Id: dvbapi.c 1.130 2001/09/30 11:28:58 kls Exp $ + * $Id: dvbapi.c 1.131 2001/10/06 15:14:17 kls Exp $ */ //#define DVDDEBUG 1 @@ -3169,7 +3169,7 @@ void cDvbApi::SetModeNormal(bool FromRecording) void cDvbApi::SetVideoFormat(videoFormat_t Format) { - if (fd_video) + if (fd_video >= 0) CHECK(ioctl(fd_video, VIDEO_SET_FORMAT, Format)); } |