[Lldb-commits] [lldb] [lldb-dap] Do not take ownership of stdin.	(PR #133811)
    John Harrison via lldb-commits 
    lldb-commits at lists.llvm.org
       
    Mon Mar 31 15:43:22 PDT 2025
    
    
  
================
@@ -571,7 +571,7 @@ int main(int argc, char *argv[]) {
   }
 
   lldb::IOObjectSP input = std::make_shared<NativeFile>(
-      fileno(stdin), File::eOpenOptionReadOnly, true);
+      fileno(stdin), File::eOpenOptionReadOnly, false);
----------------
ashgti wrote:
Applied.
https://github.com/llvm/llvm-project/pull/133811
    
    
More information about the lldb-commits
mailing list