mirror of
https://github.com/AppleWin/AppleWin.git
synced 2026-04-21 23:16:39 +00:00
Remove VirtualAlloc, VirtualFree & ZeroMemory. (PR #884)
. Allocation in Memory.cpp: keep VirtualAlloc of size=64KiB (alignment=64KiB) to ease debugging.
This commit is contained in:
@@ -571,8 +571,8 @@ Update_t CmdHelpSpecific (int nArgs)
|
||||
int iArg;
|
||||
char sText[ CONSOLE_WIDTH * 2 ];
|
||||
char sTemp[ CONSOLE_WIDTH * 2 ];
|
||||
ZeroMemory( sText, CONSOLE_WIDTH*2 );
|
||||
ZeroMemory( sTemp, CONSOLE_WIDTH*2 );
|
||||
memset( sText, 0, CONSOLE_WIDTH*2 );
|
||||
memset( sTemp, 0, CONSOLE_WIDTH*2 );
|
||||
|
||||
if (! nArgs)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user