[FFmpeg-cvslog] r9733 - trunk/libavformat/os_support.c

benoit subversion
Wed Jul 18 13:56:36 CEST 2007


Author: benoit
Date: Wed Jul 18 13:56:36 2007
New Revision: 9733

Log:
remove useless check


Modified:
   trunk/libavformat/os_support.c

Modified: trunk/libavformat/os_support.c
==============================================================================
--- trunk/libavformat/os_support.c	(original)
+++ trunk/libavformat/os_support.c	Wed Jul 18 13:56:36 2007
@@ -46,13 +46,13 @@ int inet_aton (const char * str, struct 
 
     add1 = atoi(pch);
     pch = strpbrk(pch,".");
-    if (pch == 0 || ++pch == 0) return 0;
+    if (!pch) return 0;
     add2 = atoi(pch);
     pch = strpbrk(pch,".");
-    if (pch == 0 || ++pch == 0) return 0;
+    if (!pch) return 0;
     add3 = atoi(pch);
     pch = strpbrk(pch,".");
-    if (pch == 0 || ++pch == 0) return 0;
+    if (!pch) return 0;
     add4 = atoi(pch);
 
     if (!add1 || (add1|add2|add3|add4) > 255) return 0;




More information about the ffmpeg-cvslog mailing list