projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
598f3dc
)
[WIN32K:NTGDI]
author
Thomas Faber
<thomas.faber@reactos.org>
Thu, 22 Oct 2015 11:29:55 +0000
(11:29 +0000)
committer
Thomas Faber
<thomas.faber@reactos.org>
Thu, 22 Oct 2015 11:29:55 +0000
(11:29 +0000)
- Correctly pass 'planes' and 'bpp' arguments to IntCreateDIBitmap in GreCreateDIBitmapInternal. CID
1250302
svn path=/trunk/; revision=69642
reactos/win32ss/gdi/ntgdi/dibobj.c
patch
|
blob
|
history
diff --git
a/reactos/win32ss/gdi/ntgdi/dibobj.c
b/reactos/win32ss/gdi/ntgdi/dibobj.c
index
a2b9362
..
06671c5
100644
(file)
--- a/
reactos/win32ss/gdi/ntgdi/dibobj.c
+++ b/
reactos/win32ss/gdi/ntgdi/dibobj.c
@@
-1529,7
+1529,7
@@
GreCreateDIBitmapInternal(
planes = 0;
compression = 0;
}
- Bmp = IntCreateDIBitmap(Dc, cx, cy,
bpp, planes
, compression, fInit, pjInit, pbmi, iUsage);
+ Bmp = IntCreateDIBitmap(Dc, cx, cy,
planes, bpp
, compression, fInit, pjInit, pbmi, iUsage);
DC_UnlockDc(Dc);
if(!hDc)