diff --git a/dbms/src/Common/Arena.h b/dbms/src/Common/Arena.h index e4c2e973095..e8b6ada44cb 100644 --- a/dbms/src/Common/Arena.h +++ b/dbms/src/Common/Arena.h @@ -137,9 +137,7 @@ public: char * res = head->pos; head->pos += size; - ASAN_UNPOISON_MEMORY_REGION(res, size + pad_right); - return res; } @@ -156,9 +154,7 @@ public: { head->pos = static_cast(head_pos); head->pos += size; - ASAN_UNPOISON_MEMORY_REGION(res, size + pad_right); - return res; }