ConnectionFileDescriptor::Connect()'s handling of the "fd://" method

was broken in r214984 by the addition of an unconditional error
return at the start of the code block handling this method.  Remove
the errant lines.
<rdar://problem/18416691> 

llvm-svn: 218291
This commit is contained in:
Jason Molenda 2014-09-23 02:43:35 +00:00
parent bbae11bd2d
commit f6a4258020
1 changed files with 0 additions and 3 deletions

View File

@ -174,9 +174,6 @@ ConnectionFileDescriptor::Connect (const char *s, Error *error_ptr)
#ifndef LLDB_DISABLE_POSIX
else if (strstr(s, "fd://") == s)
{
if (error_ptr)
error_ptr->SetErrorStringWithFormat ("Protocol is not supported on non-posix hosts '%s'", s);
return eConnectionStatusError;
// Just passing a native file descriptor within this current process
// that is already opened (possibly from a service or other source).
s += strlen ("fd://");