CI updates. Closes #862.

This commit is contained in:
Markus F.X.J. Oberhumer
2025-01-21 21:16:01 +01:00
parent 2edf91d315
commit ef8a24ba53
5 changed files with 8 additions and 5 deletions
+2
View File
@@ -177,6 +177,8 @@ void MemBuffer::alloc(upx_uint64_t bytes) may_throw {
size_t malloc_bytes = mem_size(1, bytes); // check size
if (use_simple_mcheck())
malloc_bytes += 32;
else
malloc_bytes += 4;
byte *p = (byte *) ::malloc(malloc_bytes);
NO_printf("MemBuffer::alloc %llu: %p\n", bytes, p);
if (!p)