Fix dormant bug in RAMAllocator::reallocate() manual_size calculation (#9482)

This commit is contained in:
J. Nick Koston 2025-07-13 14:58:07 -10:00 committed by GitHub
parent f5c8595a46
commit d31b8ad2e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -783,7 +783,7 @@ template<class T> class RAMAllocator {
T *reallocate(T *p, size_t n) { return this->reallocate(p, n, sizeof(T)); }
T *reallocate(T *p, size_t n, size_t manual_size) {
size_t size = n * sizeof(T);
size_t size = n * manual_size;
T *ptr = nullptr;
#ifdef USE_ESP32
if (this->flags_ & Flags::ALLOC_EXTERNAL) {