[0.4.13][NETSTAT] Fix coverity #1477187 "Double free" (#4069) CORE-17831

Within the current ShowTcpTable function logic, tcpTable would be freed twice.
The bug was introduced in 0.4.13-dev-579-g b695971c7f

Remove the second tcpTable free and fix coverity #1477187.

fix picked from 0.4.15-dev-3338-g 0e75fc9240
This commit is contained in:
Joachim Henze 2021-11-15 20:03:40 +01:00
parent aa42c29c1c
commit f9841ef2c0

View file

@ -427,7 +427,6 @@ BOOL ShowTcpTable(VOID)
{
ConResPrintf(StdErr, IDS_ERROR_TCP_SNAPSHOT);
DoFormatMessage(error);
HeapFree(GetProcessHeap(), 0, tcpTable);
return FALSE;
}