Address -Wint-conversion issues.

PiperOrigin-RevId: 561604684
Change-Id: I31af8621f8506d2e029c4ca630982f82ea4cfca9
This commit is contained in:
Google DeepMind
2023-08-31 03:24:01 -07:00
committed by Copybara-Service
parent 43a0bd3646
commit ba5cf4d54d
+3 -3
View File
@@ -1272,12 +1272,12 @@ static inline void* stackalloc(mjData* d, size_t size, size_t alignment) {
}
// store new stack usage in the red zone
ASAN_UNPOISON_MEMORY_REGION(new_pstack_ptr, sizeof(size_t));
ASAN_UNPOISON_MEMORY_REGION((void*)new_pstack_ptr, sizeof(size_t));
*(size_t*)new_pstack_ptr = usage;
ASAN_POISON_MEMORY_REGION(new_pstack_ptr, sizeof(size_t));
ASAN_POISON_MEMORY_REGION((void*)new_pstack_ptr, sizeof(size_t));
// unpoison the actual usable allocation
ASAN_UNPOISON_MEMORY_REGION(start_ptr, size);
ASAN_UNPOISON_MEMORY_REGION((void*)start_ptr, size);
#endif
#undef mjREDZONE