[vlc-commits] Lua: remove commented-out code, no functional change

Rémi Denis-Courmont git at videolan.org
Mon Mar 25 19:18:09 CET 2013


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Mar 25 20:15:57 2013 +0200| [ea89b2a7310f41e6cb7c75b2b696e36da77e4131] | committer: Rémi Denis-Courmont

Lua: remove commented-out code, no functional change

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ea89b2a7310f41e6cb7c75b2b696e36da77e4131
---

 modules/lua/libs/win.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/lua/libs/win.c b/modules/lua/libs/win.c
index 805f84f..fd1c1e1 100644
--- a/modules/lua/libs/win.c
+++ b/modules/lua/libs/win.c
@@ -50,7 +50,7 @@ static bool ReadWin32( HANDLE *hConsoleIn, char *p_buffer, int *pi_size )
     INPUT_RECORD input_record;
     DWORD i_dw;
 
-    while( /*vlc_object_alive( p_intf ) &&*/ *pi_size < MAX_LINE_LENGTH &&
+    while( *pi_size < MAX_LINE_LENGTH &&
            ReadConsoleInput( hConsoleIn, &input_record, 1, &i_dw ) )
     {
         if( input_record.EventType != KEY_EVENT ||



More information about the vlc-commits mailing list