From 78867a53c62b498f9be0f742909f202a80b622de Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Tue, 31 Dec 2019 07:38:14 +0300 Subject: [PATCH] Fixed build --- src/Interpreters/ExpressionJIT.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Interpreters/ExpressionJIT.cpp b/src/Interpreters/ExpressionJIT.cpp index 51b03f9d72b..7ba353cc7ba 100644 --- a/src/Interpreters/ExpressionJIT.cpp +++ b/src/Interpreters/ExpressionJIT.cpp @@ -302,7 +302,7 @@ public: /// Memory sanitizer don't know about stores from JIT-ed code. /// But maybe we can generate this code with MSan instrumentation? - __msan_unpoison(column->getRawData().data, column->getRawData().size); + __msan_unpoison(col_res->getRawData().data, col_res->getRawData().size); } return col_res;