forked from FFmpeg/FFmpeg
remove useless check
Originally committed as revision 9733 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9ba7fe6dcb
commit
109d30e9f1
1 changed files with 3 additions and 3 deletions
|
@ -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…
Add table
Reference in a new issue