mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-22 08:51:13 +00:00
[qfcc] Remove the internal error for null bool lists
It turns out that both lists can be null when applying short circuit logic to constants.
This commit is contained in:
parent
d6ec250897
commit
e4391992cb
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ merge (ex_list_t *l1, ex_list_t *l2)
|
|||
ex_list_t *m;
|
||||
|
||||
if (!l1 && !l2)
|
||||
internal_error (0, 0);
|
||||
return 0;
|
||||
if (!l2)
|
||||
return l1;
|
||||
if (!l1)
|
||||
|
|
Loading…
Reference in a new issue