diff options
| -rw-r--r-- | lldb/source/Commands/CommandObjectTarget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectTarget.cpp b/lldb/source/Commands/CommandObjectTarget.cpp index 4e86fd90442..aeaca59d1e0 100644 --- a/lldb/source/Commands/CommandObjectTarget.cpp +++ b/lldb/source/Commands/CommandObjectTarget.cpp @@ -4684,7 +4684,7 @@ protected: { module_spec.GetArchitecture() = target->GetArchitecture(); } - success |= module_spec.GetFileSpec().Exists(); + success |= module_spec.GetUUID().IsValid() || module_spec.GetFileSpec().Exists(); } } |

