Poseidon icon indicating copy to clipboard operation
Poseidon copied to clipboard

Socket Memory Leak

Open TekuConcept opened this issue 7 years ago • 0 comments

Pointer references to TcpClient are never deleted:

std::istream& inputStream = dispatcherStream ? *dispatcherStream : std::cin;
std::ostream& outputStream = dispatcherStream ? *dispatcherStream : std::cout;

Suggested (conditionally) delete &inputStream; and delete &outputStream;

TekuConcept avatar May 12 '17 06:05 TekuConcept