[ares] fix bug in unifying equality

This commit is contained in:
Philip Monk 2023-02-14 01:53:24 -07:00
parent 82a08d878e
commit bb819abcc2

View File

@ -699,7 +699,7 @@ pub unsafe fn unifying_equality(stack: &mut NockStack, a: *mut Noun, b: *mut Nou
&& memcmp(
x_indirect.data_pointer() as *const c_void,
y_indirect.data_pointer() as *const c_void,
indirect_raw_size(x_indirect) << 3,
x_indirect.size() << 3,
) == 0
{
let (_senior, junior) = senior_pointer_first(stack, x_as_ptr, y_as_ptr);