From e6fdcf15cf57e2b6c34e4e92bdeaa308522ed554 Mon Sep 17 00:00:00 2001 From: yanavlasov Date: Tue, 23 Jan 2024 11:52:25 -0500 Subject: [PATCH] Fix ASAN error in ext_authz tests (#31967) Signed-off-by: Yan Avlasov --- source/extensions/filters/http/ext_authz/ext_authz.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/extensions/filters/http/ext_authz/ext_authz.h b/source/extensions/filters/http/ext_authz/ext_authz.h index d18aa27ccccc..7a24e2d84deb 100644 --- a/source/extensions/filters/http/ext_authz/ext_authz.h +++ b/source/extensions/filters/http/ext_authz/ext_authz.h @@ -388,7 +388,7 @@ class Filter : public Logger::Loggable, // This is used to hold the final configs after we merge them with per-route configs. bool allow_partial_message_{}; - uint32_t max_request_bytes_; + uint32_t max_request_bytes_{}; // Used to identify if the callback to onComplete() is synchronous (on the stack) or asynchronous. bool initiating_call_{};