[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Assertion `(((((uv)->v.p != &(uv)->u.value))` fail
- From: Roberto Ierusalimschy <roberto@...>
- Date: Tue, 7 Feb 2023 13:01:28 -0300
> An assertion failure is found by fuzzing in lua (version 5.4.4, git
> commit: 5d708c3f9cae12820e415d4f89c9eacbe2ab964b.)
>
> [...]
Many thanks for the feedback. Actually, the root of this bug also
causes a bug in the following example:
local a = 0
local b = 1
print(b//a)
It has been there since 5.4.0. It is somewhat uncredible that no one
(including us) noticed it before.
-- Roberto