Ignore:
Timestamp:
Sep 6, 2009, 12:22:28 PM (16 years ago)
Author:
vladest
Message:

Fixed crash due double free

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/winkeyboard.cpp

    r21303 r21340  
    16301630UINT WIN32API MapVirtualKeyA(UINT uCode,  UINT uMapType)
    16311631{
    1632   dprintf(("incompletely implemented"));
     1632    dprintf(("MapVirtualKeyA: incompletely implemented"));
    16331633 
    16341634  /* A quick fix for Commandos, very incomplete */
     
    16761676UINT WIN32API MapVirtualKeyW(UINT uCode, UINT uMapType)
    16771677{
    1678   dprintf(("incorrectly implemented"));
     1678    dprintf(("MapVirtualKeyW: incorrectly implemented"));
    16791679 
    16801680  // NOTE: This will not work as is (needs UNICODE support)
     
    17001700UINT WIN32API MapVirtualKeyExA(UINT uCode,  UINT uMapType, HKL dwhkl)
    17011701{
    1702   dprintf(("incompletely implemented"));
     1702    dprintf(("MapVirtualKeyExA: incompletely implemented"));
    17031703
    17041704  return MapVirtualKeyA(uCode, uMapType);
     
    17231723UINT WIN32API MapVirtualKeyExW(UINT uCode, UINT uMapType, HKL dwhkl)
    17241724{
    1725   dprintf(("incompletely implemented"));
     1725    dprintf(("MapVirtualKeyExW: incompletely implemented"));
    17261726
    17271727  return MapVirtualKeyW(uCode, uMapType);
Note: See TracChangeset for help on using the changeset viewer.