mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-05 00:42:10 +00:00
[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:
parent
399c0ec17f
commit
6f03b4a65f
1 changed files with 9 additions and 1 deletions
|
@ -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 *
|
||||
|
|
Loading…
Reference in a new issue