From d694679ab6c279bcca085880ba57d93b41a789f2 Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Fri, 18 Dec 2009 16:07:12 -0600 Subject: [PATCH] gdiplus: Add trace to GdipBitmapUnlockBits. --- dlls/gdiplus/image.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/gdiplus/image.c b/dlls/gdiplus/image.c index 78801fdbf1b..4fd1a4ff0a0 100644 --- a/dlls/gdiplus/image.c +++ b/dlls/gdiplus/image.c @@ -554,6 +554,8 @@ GpStatus WINGDIPAPI GdipBitmapUnlockBits(GpBitmap* bitmap, BOOL bm_is_selected; BITMAPINFO *pbmi; + TRACE("(%p,%p)\n", bitmap, lockeddata); + if(!bitmap || !lockeddata) return InvalidParameter;