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

Because it's not a type, but the lack of one.

Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2018-04-10 20:30:28 -05:00 committed by Alexandre Julliard
parent e41209f228
commit c3ebd20283
1 changed files with 8 additions and 4 deletions

View File

@ -5753,7 +5753,8 @@ static unsigned char *union_arm_marshall(PMIDL_STUB_MESSAGE pStubMsg, unsigned c
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;
}
@ -5826,7 +5827,8 @@ static unsigned char *union_arm_unmarshall(PMIDL_STUB_MESSAGE pStubMsg,
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;
}
@ -5884,7 +5886,8 @@ static void union_arm_buffer_size(PMIDL_STUB_MESSAGE pStubMsg,
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,
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);