Commit 122ca034 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

rpcrt4: Exit on unknown confirmance type (Coverity).

parent afd4aed5
......@@ -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]) {
......
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