gdiplus: Don't return garbage from the GdipCreateHBITMAPFromBitmap stub.

This commit is contained in:
Alexandre Julliard 2009-07-01 12:14:40 +02:00
parent a6b05ea96c
commit 4d31a25f50
1 changed files with 1 additions and 1 deletions

View File

@ -449,7 +449,7 @@ GpStatus WINGDIPAPI GdipCreateHBITMAPFromBitmap(GpBitmap* bitmap,
{
FIXME("stub\n");
hbmReturn = NULL;
if (hbmReturn) *hbmReturn = NULL;
return NotImplemented;
}