[UDFS] Fix build with lower optimization level

This commit is contained in:
Jérôme Gardou 2020-10-15 11:29:09 +02:00
parent 2c2114d9d8
commit 612b1f2e6e

View file

@ -221,6 +221,12 @@ VOID inline MyFreePool__(PVOID addr) {
#endif //MY_MEM_BOUNDS_CHECK
/* This function just scares the hell out of GCC */
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wstringop-overflow"
#endif
ULONG inline MyReallocPool__(PCHAR addr, ULONG len, PCHAR *pnewaddr, ULONG newlen) {
ULONG _len, _newlen;
_newlen = MyAlignSize__(newlen);
@ -292,6 +298,9 @@ ULONG inline MyReallocPool__(PCHAR addr, ULONG len, PCHAR *pnewaddr, ULONG newle
*/
return newlen;
}
#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif
#ifndef MY_USE_ALIGN
#undef MyAlignSize__