[squid-users] skipLeadingSpace
Alex Rousskov
rousskov at measurement-factory.com
Fri Apr 14 22:27:24 UTC 2017
On 04/14/2017 03:30 PM, joseph wrote:
> is this correct ??
>
> char *
> skipLeadingSpace(char *aString)
> {
> char *result = aString;
>
> while (xisspace(*aString))
> ++aString;
>
> return result;
> }
No, the above code is incorrect. It does nothing [useful]. The bug was
introduced in r5698 "Client side refactoring - no functionality changes".
Fortunately, this bug has no effect in recent code because this buggy
function is unused. It should be removed.
Thank you,
Alex.
P.S. You should discuss Squid code on squid-dev not squid-users.
More information about the squid-users
mailing list