[Spice-devel] [PATCH qxl-wddm-dod 09/26] Use SrcPitch when calculating size of memory to map PresentDisplayOnly
Sameeh Jubran
sameeh at daynix.com
Tue Aug 9 15:28:41 UTC 2016
From: Sandy Stutsman <sstutsma at redhat.com>
Otherwise, can result in a BSOD.
---
qxldod/QxlDod.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/qxldod/QxlDod.cpp b/qxldod/QxlDod.cpp
index 9d13934..7b60e0c 100755
--- a/qxldod/QxlDod.cpp
+++ b/qxldod/QxlDod.cpp
@@ -3606,7 +3606,7 @@ QxlDevice::ExecutePresentDisplayOnly(
{
// Map Source into kernel space, as Blt will be executed by system worker thread
- UINT sizeToMap = SrcBytesPerPixel * ctx->SrcWidth * ctx->SrcHeight;
+ UINT sizeToMap = ctx->SrcPitch * ctx->SrcHeight;
PMDL mdl = IoAllocateMdl((PVOID)SrcAddr, sizeToMap, FALSE, FALSE, NULL);
if(!mdl)
--
2.7.0.windows.1
More information about the Spice-devel
mailing list