[Lldb-commits] [lldb] [lldb] make PlatformAndroid/AdbClient::GetSyncService threadsafe (PR #145382)

via lldb-commits lldb-commits at lists.llvm.org
Thu Jun 26 10:31:46 PDT 2025


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


More information about the lldb-commits mailing list