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

Add encoding for VT_R8.

Bug fix: Initialise child_size.
parent 3b4801c5
......@@ -682,7 +682,7 @@ static int encode_type(
int typeoffset;
int *typedata;
int target_type;
int child_size;
int child_size = 0;
chat("encode_type vt %d type %p\n", vt, type);
......@@ -741,6 +741,12 @@ static int encode_type(
*alignment = 4;
break;
case VT_R8:
*encoded_type = default_type;
*width = 8;
*alignment = 8;
break;
case VT_CY:
*encoded_type = default_type;
*width = 8;
......
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