Module: wine Branch: refs/heads/master Commit: fc5e5eae8a5f616086469fc72a97eaf01c78abf5 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=fc5e5eae8a5f616086469fc7...
Author: Cyril Margorin comargo@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;