mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-15 03:34:56 +00:00
remove useless check
Originally committed as revision 9733 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9ba7fe6dcb
commit
109d30e9f1
@ -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…
Reference in New Issue
Block a user