Commit c3ebd202 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

rpcrt4: We don't need to marshal type 0.

Because it's not a type, but the lack of one. Signed-off-by: 's avatarZebediah Figura <z.figura12@gmail.com> Signed-off-by: 's avatarHuw Davies <huw@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent e41209f2
...@@ -5753,7 +5753,8 @@ static unsigned char *union_arm_marshall(PMIDL_STUB_MESSAGE pStubMsg, unsigned c ...@@ -5753,7 +5753,8 @@ static unsigned char *union_arm_marshall(PMIDL_STUB_MESSAGE pStubMsg, unsigned c
m(pStubMsg, pMemory, desc); m(pStubMsg, pMemory, desc);
} }
} }
else FIXME("no marshaller for embedded type %02x\n", *desc); else if (*desc)
FIXME("no marshaller for embedded type %02x\n", *desc);
} }
return NULL; return NULL;
} }
...@@ -5826,7 +5827,8 @@ static unsigned char *union_arm_unmarshall(PMIDL_STUB_MESSAGE pStubMsg, ...@@ -5826,7 +5827,8 @@ static unsigned char *union_arm_unmarshall(PMIDL_STUB_MESSAGE pStubMsg,
m(pStubMsg, ppMemory, desc, fMustAlloc); m(pStubMsg, ppMemory, desc, fMustAlloc);
} }
} }
else FIXME("no marshaller for embedded type %02x\n", *desc); else if (*desc)
FIXME("no marshaller for embedded type %02x\n", *desc);
} }
return NULL; return NULL;
} }
...@@ -5884,7 +5886,8 @@ static void union_arm_buffer_size(PMIDL_STUB_MESSAGE pStubMsg, ...@@ -5884,7 +5886,8 @@ static void union_arm_buffer_size(PMIDL_STUB_MESSAGE pStubMsg,
m(pStubMsg, pMemory, desc); m(pStubMsg, pMemory, desc);
} }
} }
else FIXME("no buffersizer for embedded type %02x\n", *desc); else if (*desc)
FIXME("no buffersizer for embedded type %02x\n", *desc);
} }
} }
...@@ -5932,7 +5935,8 @@ static ULONG union_arm_memory_size(PMIDL_STUB_MESSAGE pStubMsg, ...@@ -5932,7 +5935,8 @@ static ULONG union_arm_memory_size(PMIDL_STUB_MESSAGE pStubMsg,
return m(pStubMsg, desc); return m(pStubMsg, desc);
} }
} }
else FIXME("no marshaller for embedded type %02x\n", *desc); else if (*desc)
FIXME("no marshaller for embedded type %02x\n", *desc);
} }
TRACE("size %d\n", size); TRACE("size %d\n", size);
......
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