Author: kwizart
Update of /cvs/free/rpms/vlc/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv5794
Modified Files:
vlc-backport-lirc_fix.patch
Log Message:
Fix truncated patch
vlc-backport-lirc_fix.patch:
lirc.c | 3 +++
1 file changed, 3 insertions(+)
Index: vlc-backport-lirc_fix.patch
===================================================================
RCS file: /cvs/free/rpms/vlc/devel/vlc-backport-lirc_fix.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vlc-backport-lirc_fix.patch 25 Jan 2011 11:57:16 -0000 1.1
+++ vlc-backport-lirc_fix.patch 25 Jan 2011 13:39:37 -0000 1.2
@@ -16,9 +16,9 @@
#include <fcntl.h>
#ifdef HAVE_CONFIG_H
-@@ -154,10 +155,12 @@ static void Run( intf_thread_t *p_intf )
+@@ -154,10 +155,12 @@
/* Wait for data */
- struct pollfd ufd = { .fd = p_sys->i_fd, .events = POLLIN, .revents = 0
+ struct pollfd ufd = { .fd = p_sys->i_fd, .events = POLLIN, .revents = 0 };
if( poll( &ufd, 1, -1 ) == -1 )
+ {
if( errno == EINTR )
@@ -28,3 +28,4 @@
+ }
/* Process */
+ int canc = vlc_savecancel();