From cfae0b23b92618c0c667b92cba9c719e00c0c76b Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Wed, 4 Mar 2015 21:28:55 +0000 Subject: [PATCH] Fix a thinko in the case where we return a launch error with no error string. Return "" rather than the empty launch error... llvm-svn: 231287 --- lldb/tools/debugserver/source/debugserver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/tools/debugserver/source/debugserver.cpp b/lldb/tools/debugserver/source/debugserver.cpp index c46d63d..2c27511 100644 --- a/lldb/tools/debugserver/source/debugserver.cpp +++ b/lldb/tools/debugserver/source/debugserver.cpp @@ -255,7 +255,7 @@ RNBRunLoopLaunchInferior (RNBRemote *remote, const char *stdin_path, const char { DNBLogThreaded ("%s DNBProcessLaunch() failed to launch process, unknown failure", __FUNCTION__); ctx.LaunchStatus().SetError(-1, DNBError::Generic); - ctx.LaunchStatus().SetErrorString(launch_err_str); + ctx.LaunchStatus().SetErrorString(""); } else { -- 2.7.4