mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Fix the return value of CImage::Detach. CORE-19008
This commit is contained in:
parent
5da3ed638b
commit
8d74bc4b46
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ public:
|
|||
|
||||
HBITMAP Detach() noexcept
|
||||
{
|
||||
m_hOldBitmap = m_hBitmap = NULL;
|
||||
m_hOldBitmap = NULL;
|
||||
m_nWidth = m_nHeight = m_nPitch = m_nBPP = 0;
|
||||
m_pBits = NULL;
|
||||
|
||||
|
|
Loading…
Reference in a new issue