From a7e30599ea011632e9cfd4e24026cc88bd2c7da6 Mon Sep 17 00:00:00 2001 From: Royce Mitchell III Date: Fri, 20 Feb 2004 07:45:58 +0000 Subject: [PATCH] If nWidth or nHeight is zero, CreateBitmap returns the handle to a 1- by 1-pixel, monochrome bitmap. svn path=/trunk/; revision=8276 --- reactos/subsys/win32k/objects/bitmaps.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/win32k/objects/bitmaps.c b/reactos/subsys/win32k/objects/bitmaps.c index 1085bff3364..e8bff7e148b 100644 --- a/reactos/subsys/win32k/objects/bitmaps.c +++ b/reactos/subsys/win32k/objects/bitmaps.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: bitmaps.c,v 1.55 2004/02/19 21:12:10 weiden Exp $ */ +/* $Id: bitmaps.c,v 1.56 2004/02/20 07:45:58 royce Exp $ */ #undef WIN32_LEAN_AND_MEAN #include #include @@ -249,7 +249,8 @@ HBITMAP STDCALL NtGdiCreateBitmap(INT Width, /* Check parameters */ if (!Height || !Width) { - return 0; + Width = 1; + Height = 1; } if (Planes != 1) {