Commit 1aa6a900 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

widl: Suppress a coverity warning.

Knowning that frame->code will be set when the exception handler is called. Suppress this coverity issue.
parent 7af7ff87
......@@ -298,6 +298,7 @@ static void gen_proxy(type_t *iface, const var_t *func, int idx,
if (has_ret) {
indent++;
proxy_free_variables( type_function_get_args(func->declspec.type), "" );
print_proxy( "/* coverity[uninit_use_in_call:SUPPRESS] */\n" );
print_proxy( "_RetVal = NdrProxyErrorHandler(RpcExceptionCode());\n" );
indent--;
}
......
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