mirror of
https://github.com/ilyakooo0/urbit.git
synced 2025-01-05 22:03:50 +03:00
u3: fixes bug in +rub jet (unsafe coercion from c3_w to noun)
This commit is contained in:
parent
03d80b8c63
commit
2c25c51eb8
@ -14,7 +14,13 @@
|
|||||||
u3_atom w, x, y, z;
|
u3_atom w, x, y, z;
|
||||||
u3_atom p, q;
|
u3_atom p, q;
|
||||||
|
|
||||||
u3_atom m = u3qa_add(a, u3r_met(0, b));
|
u3_atom m;
|
||||||
|
{
|
||||||
|
c3_w bit_w = u3r_met(0, b);
|
||||||
|
u3_noun bit = u3i_words(1, &bit_w);
|
||||||
|
m = u3qa_add(a, bit);
|
||||||
|
u3z(bit);
|
||||||
|
}
|
||||||
|
|
||||||
// Compute c and d.
|
// Compute c and d.
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user