Commit ef072b1e authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

riched20/tests: Fix test on 64-bit win8.

parent 60e305d9
...@@ -3412,7 +3412,7 @@ static DWORD CALLBACK test_esCallback_written_1(DWORD_PTR dwCookie, ...@@ -3412,7 +3412,7 @@ static DWORD CALLBACK test_esCallback_written_1(DWORD_PTR dwCookie,
LONG *pcb) LONG *pcb)
{ {
char** str = (char**)dwCookie; char** str = (char**)dwCookie;
ok(cb == *pcb, "cb %d, *pcb %d\n", cb, *pcb); ok(*pcb == cb || *pcb == 0, "cb %d, *pcb %d\n", cb, *pcb);
*pcb = 0; *pcb = 0;
if (cb > 0) { if (cb > 0) {
memcpy(*str, pbBuff, cb); memcpy(*str, pbBuff, cb);
......
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