Fixed potential memory leak

This commit is contained in:
anschrammh 2019-05-08 23:05:10 +02:00
parent 3f7c5f369b
commit 5e3f0dc139

View File

@ -536,4 +536,5 @@ void WEBServerManager::clearHttpRequestData()
free(_httpRequestData.httpResource);free(_httpRequestData.httpBody);
_httpRequestData.httpResource = NULL;_httpRequestData.httpBody = NULL;
_httpRequestData.getParams.dispose();
_httpRequestData.postParams.dispose();
}