Skip to content
Snippets Groups Projects
Commit c9431408 authored by Elizabeth Figura's avatar Elizabeth Figura Committed by Alexandre Julliard
Browse files

rpcrt4: Handle large arrays in EmbeddedComplexSize().

parent 9badb780
Branches
Tags
No related merge requests found
......@@ -2765,6 +2765,9 @@ static ULONG EmbeddedComplexSize(MIDL_STUB_MESSAGE *pStubMsg,
case FC_SMVARRAY:
case FC_CSTRING:
return *(const WORD*)&pFormat[2];
case FC_LGFARRAY:
case FC_LGVARRAY:
return *(const ULONG*)&pFormat[2];
case FC_USER_MARSHAL:
return *(const WORD*)&pFormat[4];
case FC_RANGE: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment