jeffreytan81 wrote:

@cs01, can you get a more symbolicated stacktrace for the crash with debug info 
and line info? 
>From the current callstack, it seems to be a life time use after free issue? 
>Like the `SyncService` is trying to access underlying `m_conn` object while it 
>is destroyed? 
If so, is changing to use `shared_ptr< SyncService>` (with proper thread-safe 
protection) fixing the issue instead of creating the object for each access? 


https://github.com/llvm/llvm-project/pull/145382
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to