mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
Copy named expressions.
Since expressions can be modified, making DAGs this early causes corruption of the expression tree.
This commit is contained in:
parent
6f625e426f
commit
adeef4a4eb
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ convert_name (expr_t *e)
|
|||
return;
|
||||
}
|
||||
if (sym->sy_type == sy_expr) {
|
||||
new = sym->s.expr;
|
||||
new = copy_expr (sym->s.expr);
|
||||
goto convert;
|
||||
}
|
||||
if (sym->sy_type == sy_type)
|
||||
|
|
Loading…
Reference in a new issue