webservices: Fix a typo.
Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
a5a12491ac
commit
7af5a14de1
|
@ -2759,7 +2759,7 @@ static HRESULT read_type_struct_field( struct reader *reader, const WS_FIELD_DES
|
||||||
{
|
{
|
||||||
ULONG count;
|
ULONG count;
|
||||||
hr = read_type_repeating_element( reader, desc, option, heap, (void **)ptr, size, &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;
|
break;
|
||||||
}
|
}
|
||||||
case WS_TEXT_FIELD_MAPPING:
|
case WS_TEXT_FIELD_MAPPING:
|
||||||
|
|
Loading…
Reference in New Issue