From 7e3e4a031fd9b4f1b19339c5c53026a920247ea8 Mon Sep 17 00:00:00 2001 From: dzaima Date: Mon, 26 May 2025 22:30:10 +0300 Subject: [PATCH] change freed object debug reference count value the previous one had hex 0xaaaaada8, the new one has a more easily identifiable signed decimal form --- src/core/stuff.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/stuff.h b/src/core/stuff.h index dbab512e..2a9f3e3b 100644 --- a/src/core/stuff.h +++ b/src/core/stuff.h @@ -481,7 +481,7 @@ FORCE_INLINE void preFree(Value* x, bool mmx) { if (x->type==t_empty) fatal("double-free"); // u32 undef; // x->refc = undef; - x->refc = -1431655000; + x->refc = -1111119190; // unsigned: 3183848106; hex: 0xbdc5aaaa #endif // x->refc = 0x61616161; }