commit | 09f8a751e8039e778711d2cf4c5634aeba79e535 | [log] [tgz] |
---|---|---|
author | Alexandre Julliard <julliard@winehq.org> | Sat Mar 04 19:18:23 2000 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Sat Mar 04 19:18:23 2000 +0000 |
tree | 407fa1a3dae4064682d4a8701679aa233e7b2e67 | |
parent | 7bedbf6ae4852ba03f61ce7b702bec4691d54826 [diff] [blame] |
Lilia Roumiantseva cbCountSizeOfEnhMetafile callback function instead of increasing a contents of the pointer to the size increased the pointer itself.
diff --git a/objects/enhmetafile.c b/objects/enhmetafile.c index 21a95c7..6a4e3f8 100644 --- a/objects/enhmetafile.c +++ b/objects/enhmetafile.c
@@ -269,7 +269,7 @@ { LPUINT uSizeOfRecordData = (LPUINT)lpData; - uSizeOfRecordData += lpEMR->nSize; + *uSizeOfRecordData += lpEMR->nSize; return TRUE; }