Commit 7af5a14d authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

webservices: Fix a typo.

parent a5a12491
......@@ -2759,7 +2759,7 @@ static HRESULT read_type_struct_field( struct reader *reader, const WS_FIELD_DES
{
ULONG count;
hr = read_type_repeating_element( reader, desc, option, heap, (void **)ptr, size, &count );
if (hr == S_OK) *(ULONG *)(ptr + desc->countOffset) = count;
if (hr == S_OK) *(ULONG *)(buf + desc->countOffset) = count;
break;
}
case WS_TEXT_FIELD_MAPPING:
......
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