LLDB: Fix local debugging after b39f26e856

Change-Id: I6ba4a6daa0b4bc0132a447bdc938ce19a95903e3
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Eike Ziller
2013-11-01 11:32:04 +01:00
committed by hjk
parent ebf44de279
commit fc6386be80
+1 -1
View File
@@ -688,7 +688,7 @@ class Dumper(DumperBase):
environmentList = [key + "=" + value for key,value in os.environ.items()]
launchInfo.SetEnvironmentEntries(environmentList, False)
self.process = self.target.Launch(launchInfo, error)
if not err.Success():
if not error.Success():
self.report('state="inferiorrunfailed"')
return
self.report('pid="%s"' % self.process.GetProcessID())