rpcrt4: Even though FC_DEREFERENCE conformance is handled elsewhere in

ComputeConformanceOrVariance it is still necessary to set the count
variable to the value retrieved.
This commit is contained in:
Robert Shearman 2006-05-26 15:50:49 +01:00 committed by Alexandre Julliard
parent 8b56e88276
commit 013d00f094
1 changed files with 1 additions and 3 deletions

View File

@ -489,12 +489,10 @@ PFORMAT_STRING ComputeConformanceOrVariance(
done_conf_grab:
switch (pFormat[1]) {
case RPC_FC_DEREFERENCE: /* already handled */
case 0: /* no op */
*pCount = data;
break;
case RPC_FC_DEREFERENCE:
/* already handled */
break;
case RPC_FC_ADD_1:
*pCount = data + 1;
break;