Skip to content
Snippets Groups Projects
Commit da243570 authored by Elizabeth Figura's avatar Elizabeth Figura Committed by Alexandre Julliard
Browse files

vkd3d-shader/hlsl: Fix some memory leaks in the function call rule.

parent d405295b
No related branches found
No related tags found
1 merge request!116vkd3d-shader/hlsl: Fix some memory leaks in the function call rule.
Pipeline #8427 skipped
......@@ -5300,7 +5300,11 @@ primary_expr:
| var_identifier '(' func_arguments ')'
{
if (!($$ = add_call(ctx, $1, &$3, &@1)))
{
vkd3d_free($1);
YYABORT;
}
vkd3d_free($1);
}
| NEW_IDENTIFIER
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment