mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
Daniel Zimmerman
- Fix random widl crashes when compiling on Vista x86. Patch from Wine bugzilla: http://bugs.winehq.org/show_bug.cgi?id=16084 . See issue #3877 for more details. svn path=/trunk/; revision=37390
This commit is contained in:
parent
c729ed5e3b
commit
bc5c507d54
1 changed files with 1 additions and 1 deletions
|
@ -3091,7 +3091,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;
|
||||
|
|
Loading…
Reference in a new issue