V726. An attempt to free memory containing the 'int A[10]' array by using the 'free(A)' function.
V726 An attempt to free memory containing the 'p' array by using the 'free' function. This is incorrect as 'p' was created on stack. playplusview.cpp 7059
int CopyStream(PAVIFILE pavi,PAVISTREAM pstm)
{
....
BYTE p[20000];
....
free(p);
return 0;
}
V726 An attempt to free memory containing the 'szXMLNorm' array by using the 'free' function. This is incorrect as 'szXMLNorm' was created on stack. utils.c 92
int SetSkinAsDefault()
{
TCHAR szXMLNorm[MAX_PATH];
....
else {
free(szXMLNorm);
return 0;
}
return 1;
}
If you feel like the New Year just came, and you missed the first half of January, then all this ...