mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
d3dxof: Avoid undefined behavior in parse_object_parts.
Signed-off-by: Thomas Faber <thomas.faber@reactos.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b22d4e4588
commit
73eff6652a
1 changed files with 2 additions and 1 deletions
|
@ -1349,7 +1349,8 @@ _exit:
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
buf->pxo = buf->pxo->children[buf->pxo->nb_children] = &buf->pxo_tab[buf->pxo->root->nb_subobjects++];
|
||||
buf->pxo = buf->pxo->children[buf->pxo->nb_children] = &buf->pxo_tab[buf->pxo->root->nb_subobjects];
|
||||
pxo->root->nb_subobjects++;
|
||||
|
||||
TRACE("Enter optional %s\n", (char*)buf->value);
|
||||
buf->level++;
|
||||
|
|
Loading…
Reference in a new issue