Commit 09f8a751 authored by Alexandre Julliard's avatar Alexandre Julliard

Lilia Roumiantseva

cbCountSizeOfEnhMetafile callback function instead of increasing a contents of the pointer to the size increased the pointer itself.
parent 7bedbf6a
...@@ -269,7 +269,7 @@ INT CALLBACK cbCountSizeOfEnhMetaFile( HDC a, ...@@ -269,7 +269,7 @@ INT CALLBACK cbCountSizeOfEnhMetaFile( HDC a,
{ {
LPUINT uSizeOfRecordData = (LPUINT)lpData; LPUINT uSizeOfRecordData = (LPUINT)lpData;
uSizeOfRecordData += lpEMR->nSize; *uSizeOfRecordData += lpEMR->nSize;
return TRUE; return TRUE;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment