Posted by Kristleifur Dašason on March 03, 2006 at 12:39:00:
In Reply to: HawkNL 1.68 fixes for OS X 10.4 posted by Kristleifur Daļæ½ason on March 03, 2006 at 12:34:27:
Oh, there's also a change in loopback.c -- loopback_getNextPort.
Line:
if(++newport > 65535)
What if newport overflows?
If i'm not wrong, it could be like this:
if(++newport > 65535 || newport < 1024)