widl: Fix check for interface type in get_size_procformatstring.

This commit is contained in:
Daniel Zimmermann 2008-11-17 15:34:01 -05:00 committed by Alexandre Julliard
parent 0d6415df16
commit 89cf227601
1 changed files with 1 additions and 1 deletions

View File

@ -3137,7 +3137,7 @@ size_t get_size_procformatstring(const statement_list_t *stmts, type_pred_t pred
size += get_size_procformatstring(stmt->u.lib->stmts, pred) - 1;
continue;
}
else if (stmt->type != STMT_TYPE && stmt->u.type->type != RPC_FC_IP)
else if (stmt->type != STMT_TYPE || stmt->u.type->type != RPC_FC_IP)
continue;
iface = stmt->u.type;