Hello All,
I am creating the array of size: 26627664 bytes then convert the byte to char array.
While deleting the array i got an code gaurd log error that Bad Parameter.
I am doing like this
Char* pBuffer = (Char*)new BYTE[26627664];
and deleting like this,
if(pBuffer != NULL)
delete[] pBuffer;
facing the problem
Please Help.