On lines 510, 516, 522, 528, and 618 of trex.cc, there are several pointer increments of the form:
*p++
Where the value acquired by deferencing p is not used in any way. It is likely that the author meant:
p++
In all these places.
Log in to post a comment.