qhttpserver
qhttpserver copied to clipboard
Fixed memory leak in QHttpConnection class
On each http request a new instance of m_request was created and not deleted. So every request caused a memory gap of several kB.
To close this gap the m_request instance of theConnection is deleted if the connection is destoyed.
Thanks! Could you fix the indentation?