wgtmac opened a new issue, #45099:
URL: https://github.com/apache/arrow/issues/45099

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   We have encountered crash after upgrading to use LLVM 18. After digging into 
it further, the root cause is that `Status::message` function below has defined 
a static const string in the header file which may cause troubles in different 
translation units.
   ```
     const std::string& message() const {
       static const std::string no_message = "";
       return ok() ? no_message : state_->msg;
     }
   ```
   
   ### Component(s)
   
   C++


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to