Update of /cvsroot/freevo/freevo/src/video/plugins
In directory sc8-pr-cvs1:/tmp/cvs-serv8912

Modified Files:
        xine.py 
Log Message:
wait for child to exit

Index: xine.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/video/plugins/xine.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** xine.py     2 Aug 2003 09:08:14 -0000       1.5
--- xine.py     2 Aug 2003 16:21:24 -0000       1.6
***************
*** 29,32 ****
--- 29,35 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.6  2003/08/02 16:21:24  dischi
+ # wait for child to exit
+ #
  # Revision 1.5  2003/08/02 09:08:14  dischi
  # support different versions of xine, check version at startup
***************
*** 117,123 ****
          xine_cvs     = 0
          
!         x = popen2.Popen3('%s --version' % config.XINE_COMMAND, 1, 100)
          while(1):
!             data = x.fromchild.readline()
              if not data:
                  break
--- 120,126 ----
          xine_cvs     = 0
          
!         child = popen2.Popen3('%s --version' % config.XINE_COMMAND, 1, 100)
          while(1):
!             data = child.fromchild.readline()
              if not data:
                  break
***************
*** 128,131 ****
--- 131,136 ----
                  xine_version =int('%02d%02d%02d' % (int(m.group(1)), int(m.group(2)),
                                                      int(m.group(3))))
+ 
+         child.wait()
  
          if xine_cvs:




-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to