Cyril Margorin : x11drv: Fix X11DRV_GetDIBits to pass shared memory image to

Alexandre Julliard julliard at wine.codeweavers.com
Mon Feb 13 07:03:37 CST 2006


Module: wine
Branch: refs/heads/master
Commit: fc5e5eae8a5f616086469fc72a97eaf01c78abf5
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=fc5e5eae8a5f616086469fc72a97eaf01c78abf5

Author: Cyril Margorin <comargo at gmail.com>
Date:   Mon Feb 13 13:24:49 2006 +0100

x11drv: Fix X11DRV_GetDIBits to pass shared memory image to
X11DRV_DIB_GetImageBits.

---

 dlls/x11drv/dib.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/x11drv/dib.c b/dlls/x11drv/dib.c
index 5c6a2b9..ed49e5f 100644
--- a/dlls/x11drv/dib.c
+++ b/dlls/x11drv/dib.c
@@ -4080,7 +4080,7 @@ INT X11DRV_GetDIBits( X11DRV_PDEVICE *ph
   descr.physDev   = physDev;
   descr.palentry  = palette;
   descr.bits      = bits;
-  descr.image     = NULL;
+  descr.image     = physBitmap->image;
   descr.infoWidth = width;
   descr.lines     = lines;
   descr.depth     = physBitmap->pixmap_depth;




More information about the wine-cvs mailing list