rpcrt4: Exit on unknown confirmance type (Coverity).

This commit is contained in:
Marcus Meissner 2009-12-15 11:44:37 +01:00 committed by Alexandre Julliard
parent afd4aed5fc
commit 122ca034db
1 changed files with 2 additions and 1 deletions

View File

@ -551,7 +551,8 @@ PFORMAT_STRING ComputeConformanceOrVariance(
}
break;
default:
FIXME("unknown conformance type %x\n", pFormat[0] & 0xf0);
FIXME("unknown conformance type %x, expect crash.\n", pFormat[0] & 0xf0);
goto finish_conf;
}
switch (pFormat[1]) {