]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/regex.cpp
Upgrade bundled zlib to 1.2.8.
[wxWidgets.git] / src / common / regex.cpp
index f81154d5100725f6b7332cbfbdfade83a7684a02..a93ca08bf5e394beb0bcc3269735eb5720fe7b57 100644 (file)
@@ -4,7 +4,6 @@
 // Author:      Karsten Ballueder and Vadim Zeitlin
 // Modified by:
 // Created:     13.07.01
-// RCS-ID:      $Id$
 // Copyright:   (c) 2000 Karsten Ballueder <ballueder@gmx.net>
 //                  2001 Vadim Zeitlin <vadim@wxwindows.org>
 // Licence:     wxWindows licence
@@ -646,8 +645,7 @@ bool wxRegEx::Compile(const wxString& expr, int flags)
     if ( !m_impl->Compile(expr, flags) )
     {
         // error message already given in wxRegExImpl::Compile
-        delete m_impl;
-        m_impl = NULL;
+        wxDELETE(m_impl);
 
         return false;
     }