[console] Use aligned malloc for menu progs

Fixes ubsan's (random!) complaints about memblock not being aligned. I
should probably look into making the progs loader code ensure the memory
is aligned itself.
This commit is contained in:
Bill Currie 2024-09-24 10:58:47 +09:00
parent 399c0ec17f
commit 6f03b4a65f

View file

@ -530,13 +530,21 @@ quit_f (void)
static void *
menu_allocate_progs_mem (progs_t *pr, int size)
{
return malloc (size);
#ifdef _WIN32
return _aligned_malloc (size, 64);
#else
return aligned_alloc (64, size);
#endif
}
static void
menu_free_progs_mem (progs_t *pr, void *mem)
{
#ifdef _WIN32
_aligned_free (mem);
#else
free (mem);
#endif
}
static void *