[vlc-devel] commit: MMS: nothing ever sets b_error, so no need to check it ( Rémi Denis-Courmont )

git version control git at videolan.org
Thu Jan 28 20:20:03 CET 2010


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Thu Jan 28 21:10:09 2010 +0200| [87b420e2ccb807759a619a30d9d3783520276230] | committer: Rémi Denis-Courmont 

MMS: nothing ever sets b_error, so no need to check it

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

 modules/access/mms/mmstu.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/access/mms/mmstu.c b/modules/access/mms/mmstu.c
index 8ecbf70..efb7be6 100644
--- a/modules/access/mms/mmstu.c
+++ b/modules/access/mms/mmstu.c
@@ -1102,7 +1102,7 @@ static int NetFillBuffer( access_t *p_access )
             return -1;
         }
 
-        if( !vlc_object_alive (p_access) || p_access->b_error )
+        if( !vlc_object_alive (p_access) )
             return -1;
 
         //msg_Dbg( p_access, "NetFillBuffer: trying again (select)" );




More information about the vlc-devel mailing list