XAntiDebug icon indicating copy to clipboard operation
XAntiDebug copied to clipboard

Purpose of pRandChar ?

Open Mecanik opened this issue 4 years ago • 0 comments

Hi,

What's the purpose of this ?

		unsigned char *pRandChar = (unsigned char *)_pagePtr;
		for (size_t i = 0; i < _pageSize; i++)
		{
			pRandChar[i] = LOBYTE(rand());
		}

It's never used from what I can see...

Mecanik avatar Dec 29 '19 10:12 Mecanik