Our lazy-socket receiver class has an issue with it's internal receive buffer where it can smash heap after a realloc, because right now it's done with an almost raw buffer by calling realloc().
Switching to one of the STL containers for managing memory will be ideal.
Our
lazy-socketreceiver class has an issue with it's internal receive buffer where it can smash heap after a realloc, because right now it's done with an almost raw buffer by callingrealloc().Switching to one of the STL containers for managing memory will be ideal.