Commit 013d00f0 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

rpcrt4: Even though FC_DEREFERENCE conformance is handled elsewhere in

ComputeConformanceOrVariance it is still necessary to set the count variable to the value retrieved.
parent 8b56e882
...@@ -489,12 +489,10 @@ PFORMAT_STRING ComputeConformanceOrVariance( ...@@ -489,12 +489,10 @@ PFORMAT_STRING ComputeConformanceOrVariance(
done_conf_grab: done_conf_grab:
switch (pFormat[1]) { switch (pFormat[1]) {
case RPC_FC_DEREFERENCE: /* already handled */
case 0: /* no op */ case 0: /* no op */
*pCount = data; *pCount = data;
break; break;
case RPC_FC_DEREFERENCE:
/* already handled */
break;
case RPC_FC_ADD_1: case RPC_FC_ADD_1:
*pCount = data + 1; *pCount = data + 1;
break; break;
......
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