[Lldb-commits] [PATCH] D107767: Fix break introduced in 14735ca

Michał Górny via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Aug 9 07:58:29 PDT 2021


mgorny added a comment.

I'm sorry about missing this.



================
Comment at: lldb/source/Plugins/Platform/MacOSX/objcxx/PlatformiOSSimulatorCoreSimulatorSupport.mm:428-431
           if ((oflag & O_RDWR) || (oflag & O_RDONLY))
-            file_options |= File::eOpenOptionRead;
+            file_options |= File::eOpenOptionReadOnly;
           if ((oflag & O_RDWR) || (oflag & O_RDONLY))
+            file_options |= File::eOpenOptionWriteOnly;
----------------



Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D107767/new/

https://reviews.llvm.org/D107767



More information about the lldb-commits mailing list