I'm getting a warning for this line:

e = strtol(++s, (char **)&s, 10);

Moving the ++s to a separate statement makes the warning go away, but as far as I can tell, this warning is completely incorrect. The value of s is only used once, in the computation of ++s. The second use of s is only to take its address. Is there something I'm missing?

link|improve this question

66% accept rate
I cannot reproduce the problem using gcc 4.4.3 or 4.4.5. Post a full example.c that demonstrates it? – Kamal Nov 21 '10 at 16:25
Ah, looks like it's the older 3.x gcc on that system. – R.. Nov 21 '10 at 16:29
1  
By the way, post that as an answer and I'll accept it, since "current gcc does not generate this warning" is a good answer to my question about whether the warning was incorrect. – R.. Nov 21 '10 at 16:30
feedback

1 Answer

up vote 3 down vote accepted

Newer versions of gcc (4.4.3 or 4.4.5) do not generate any warning for the line you posted. The generation of the warning there appears to be a bug in older gcc versions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.