Browse Source

remove useless check

Originally committed as revision 9733 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Benoit Fouet 18 years ago
parent
commit
109d30e9f1
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      libavformat/os_support.c

+ 3
- 3
libavformat/os_support.c View File

@@ -46,13 +46,13 @@ int inet_aton (const char * str, struct in_addr * add)

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;


Loading…
Cancel
Save