Ignore:
Timestamp:
Jul 31, 2003, 5:58:58 PM (22 years ago)
Author:
sandervl
Message:

KOMH: DBCS updates/fixes

File:
1 edited

Legend:

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

    r10185 r10190  
    1 /* $Id: pmwindow.cpp,v 1.217 2003-07-28 11:27:47 sandervl Exp $ */
     1/* $Id: pmwindow.cpp,v 1.218 2003-07-31 15:56:44 sandervl Exp $ */
    22/*
    33 * Win32 Window Managment Code for OS/2
     
    514514    // - thread must not be suspended in WaitMessage
    515515    if(!teb || (msg != WM_CREATE && win32wnd == NULL) || teb->o.odin.fWaitMessageSuspend) {
    516         if(teb->o.odin.fWaitMessageSuspend)
     516        if(teb && teb->o.odin.fWaitMessageSuspend)
    517517             dprintf(("OS2: fWaitMessageSuspend window %x msg %x -> run default frame proc", hwnd, msg));
    518518        else dprintf(("OS2: Invalid win32wnd pointer for window %x msg %x", hwnd, msg));
     
    11821182    // - thread must not be suspended in WaitMessage
    11831183    if(!teb || (msg != WM_CREATE && win32wnd == NULL) || teb->o.odin.fWaitMessageSuspend) {
    1184         if(teb->o.odin.fWaitMessageSuspend)
     1184        if(teb && teb->o.odin.fWaitMessageSuspend)
    11851185             dprintf(("PMFRAME: fWaitMessageSuspend window %x msg %x -> run default frame proc", hwnd, msg));
    11861186        else dprintf(("PMFRAME: Invalid win32wnd pointer for window %x msg %x", hwnd, msg));
Note: See TracChangeset for help on using the changeset viewer.