llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Jonas Devlieghere (JDevlieghere)
Changes
The `locked` variable can be accessed from the asynchronous thread until the
call to f.wait() completes. However, the variable is scoped in a lexical block
that ends before that, leading to a use-af
https://github.com/JDevlieghere closed
https://github.com/llvm/llvm-project/pull/133840
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/JDevlieghere created
https://github.com/llvm/llvm-project/pull/133840
The `locked` variable can be accessed from the asynchronous thread until the
call to f.wait() completes. However, the variable is scoped in a lexical block
that ends before that, leading to a use-after-fre