mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
User/BaseMemoryLib: Use _aligned_free for MSVC
This commit is contained in:
parent
c18786f990
commit
0f769479ff
@ -383,7 +383,11 @@ FreePages (
|
||||
abort ();
|
||||
}
|
||||
|
||||
#ifdef _WIN32
|
||||
_aligned_free (Buffer);
|
||||
#else
|
||||
free (Buffer);
|
||||
#endif
|
||||
}
|
||||
|
||||
GUID *
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user