Browse Source

This can be done on the stack...

Michael Hansen 14 years ago
parent
commit
9041c0447f
  1. 7
      Sources/Plasma/PubUtilLib/plInputCore/plInputDevice.cpp

7
Sources/Plasma/PubUtilLib/plInputCore/plInputDevice.cpp

@ -208,8 +208,8 @@ char plKeyboardDevice::KeyEventToChar( plKeyEventMsg *msg )
{
short code = msg->GetKeyCode();
char c = 0;
unsigned char *kbState = TRACKED_NEW unsigned char[256];
unsigned char *buffer = TRACKED_NEW unsigned char[256];
unsigned char kbState[256];
unsigned char buffer[256];
UINT scanCode;
int retVal;
@ -320,9 +320,6 @@ char plKeyboardDevice::KeyEventToChar( plKeyEventMsg *msg )
break;
}
delete [] kbState;
delete [] buffer;
return c;
}

Loading…
Cancel
Save