From 3a3345ace4382f80307b53ae50c42a602d2adeb6 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 27 Mar 2026 16:03:06 -1000 Subject: [PATCH] =?UTF-8?q?Revert=20accidental=20FixedRingBuffer=20change?= =?UTF-8?q?=20=E2=80=94=20only=20CallbackManager=20should=20be=20affected?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- esphome/core/helpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/core/helpers.h b/esphome/core/helpers.h index f68ad5a9f6..924a36dd1e 100644 --- a/esphome/core/helpers.h +++ b/esphome/core/helpers.h @@ -420,7 +420,7 @@ template::max()> if constexpr (std::is_trivially_copyable::value && std::is_trivially_default_constructible::value) { ::operator delete(this->data_); } else { - ::operator delete(this->data_); + delete[] this->data_; } }