Changeset 3350

Show
Ignore:
Timestamp:
2004年07月15日 20時19分17秒 (4 years ago)
Author:
miyoshi
Message:

(mw32_BDF_TextOut): Free GDI resources before exiting.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.1/src/ChangeLog.Meadow

    r3349 r3350  
     12004-07-15  MIYOSHI Masanori  <miyoshi@meadowy.org> 
     2 
     3        * mw32bdf.c (mw32_BDF_TextOut): Free GDI resources before exiting. 
     4 
    152004-07-15  MIYOSHI Masanori  <miyoshi@meadowy.org> 
    26 
  • branches/2.1/src/mw32bdf.c

    r3310 r3350  
    785785              DIBsection_width = width; 
    786786              DIBsection_height = height; 
    787               if (!hBMP) return 0; 
     787              if (!hBMP) 
     788                { 
     789                  DeleteDC (hCompatDC); 
     790                  SelectObject (hdc, hOrgBrush); 
     791                  DeleteObject (hFgBrush); 
     792                  return 0; 
     793                } 
    788794            } 
    789795