X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b7282ad267ebd476ec7353e84757d5e0777af01a..6bb000ec67f671142ba67feaddbaeddd2b575811:/src/common/ipcbase.cpp diff --git a/src/common/ipcbase.cpp b/src/common/ipcbase.cpp index 52a762c252..af60bef9ac 100644 --- a/src/common/ipcbase.cpp +++ b/src/common/ipcbase.cpp @@ -5,11 +5,11 @@ // Modified by: // Created: 04/01/98 // RCS-ID: $Id$ -// Copyright: (c) Julian Smart and Markus Holzem -// Licence: wxWindows license +// Copyright: (c) Julian Smart +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "ipcbase.h" #endif @@ -77,7 +77,7 @@ wxChar *wxConnectionBase::GetBufferAtLeast( size_t bytes ) { // need to resize buffer if ( m_deletebufferwhendone ) { // we're in charge of buffer, increase it - if ( !m_buffer ) + if ( m_buffer ) delete m_buffer; m_buffer = new wxChar[bytes]; m_buffersize = bytes;