mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[ATL] Split CWindowImplBaseT::WindowProc asserion
CORE-9281
This commit is contained in:
parent
6546ad7700
commit
4f83032a12
1 changed files with 3 additions and 1 deletions
|
@ -1578,7 +1578,9 @@ public:
|
|||
BOOL handled;
|
||||
LONG_PTR saveWindowProc;
|
||||
|
||||
ATLASSERT(pThis != NULL && (pThis->m_dwState & WINSTATE_DESTROYED) == 0 && pThis->m_hWnd != NULL);
|
||||
ATLASSERT(pThis != NULL);
|
||||
ATLASSERT((pThis->m_dwState & WINSTATE_DESTROYED) == 0);
|
||||
ATLASSERT(pThis->m_hWnd != NULL);
|
||||
if (pThis == NULL || (pThis->m_dwState & WINSTATE_DESTROYED) != 0 || pThis->m_hWnd == NULL)
|
||||
return 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue