mirror of
https://github.com/intel/llvm.git
synced 2026-01-15 04:17:17 +08:00
[lldb] Make deep copies of Status explicit (NFC) (#107170)
This commit is contained in:
@@ -958,7 +958,7 @@ SBError SBThread::JumpToLine(lldb::SBFileSpec &file_spec, uint32_t line) {
|
||||
Thread *thread = exe_ctx.GetThreadPtr();
|
||||
|
||||
Status err = thread->JumpToLine(file_spec.ref(), line, true);
|
||||
sb_error.SetError(err);
|
||||
sb_error.SetError(std::move(err));
|
||||
return sb_error;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user