Skip to content

Commit

Permalink
Fix crash in PseudoTerminal on Windows.
Browse files Browse the repository at this point in the history
Patch by Rudy Pons
Differential Revision: https://reviews.llvm.org/D25681

llvm-svn: 285843
  • Loading branch information
Zachary Turner committed Nov 2, 2016
1 parent 5d9d417 commit 046bbaf
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions lldb/source/Utility/PseudoTerminal.cpp
Expand Up @@ -50,11 +50,7 @@ PseudoTerminal::~PseudoTerminal() {
//----------------------------------------------------------------------
void PseudoTerminal::CloseMasterFileDescriptor() {
if (m_master_fd >= 0) {
// Don't call 'close' on m_master_fd for Windows as a dummy implementation of
// posix_openpt above always gives it a 0 value.
#ifndef _WIN32
::close(m_master_fd);
#endif
m_master_fd = invalid_fd;
}
}
Expand All @@ -81,13 +77,14 @@ void PseudoTerminal::CloseSlaveFileDescriptor() {
// file descriptor after this object is out of scope or destroyed.
//
// RETURNS:
// Zero when successful, non-zero indicating an error occurred.
// True when successful, false indicating an error occurred.
//----------------------------------------------------------------------
bool PseudoTerminal::OpenFirstAvailableMaster(int oflag, char *error_str,
size_t error_len) {
if (error_str)
error_str[0] = '\0';

#if !defined(LLDB_DISABLE_POSIX)
// Open the master side of a pseudo terminal
m_master_fd = ::posix_openpt(oflag);
if (m_master_fd < 0) {
Expand All @@ -113,6 +110,12 @@ bool PseudoTerminal::OpenFirstAvailableMaster(int oflag, char *error_str,
}

return true;
#else
if (error_str)
::snprintf(error_str, error_len, "%s",
"pseudo terminal not supported");
return false;
#endif
}

//----------------------------------------------------------------------
Expand All @@ -124,7 +127,7 @@ bool PseudoTerminal::OpenFirstAvailableMaster(int oflag, char *error_str,
// ReleaseSlaveFileDescriptor() member function.
//
// RETURNS:
// Zero when successful, non-zero indicating an error occurred.
// True when successful, false indicating an error occurred.
//----------------------------------------------------------------------
bool PseudoTerminal::OpenSlave(int oflag, char *error_str, size_t error_len) {
if (error_str)
Expand Down

0 comments on commit 046bbaf

Please sign in to comment.