Commit 109d30e9 authored by Benoit Fouet's avatar Benoit Fouet

remove useless check

Originally committed as revision 9733 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9ba7fe6d
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment