]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
PR: bug 5693 correction
authorprascle <prascle>
Wed, 14 Apr 2004 07:47:44 +0000 (07:47 +0000)
committerprascle <prascle>
Wed, 14 Apr 2004 07:47:44 +0000 (07:47 +0000)
src/Utils/Utils_SALOME_Exception.cxx
src/Utils/Utils_SALOME_Exception.hxx

index 06f4a26f4fc671a9119e2e75bfb70d035c46faf6..8f26985a1b21d4963ebf23c016adedd964b29e28 100644 (file)
@@ -90,8 +90,7 @@ SALOME_Exception::~SALOME_Exception() throw ()
        if ( _text )
        {
                delete [] _text ;
-               char *& txt = (char*)_text ;
-               txt = 0 ;
+               _text = 0 ;
        }
        ASSERT(_text==NULL) ;
 }
index d368ed867c2f68f85ba22ae57230f74bb1918df0..9202df72ea405899902149c0cc9bbeac613ecf7a 100644 (file)
@@ -43,7 +43,7 @@ private :
        SALOME_Exception( void );
 
 protected :
-       const char* _text ;     // pointeur constant et zone pointee constante !!!!
+       const char* _text ;     // non constant pointer but read only char variable
 
 public :
        SALOME_Exception( const char *text, const char *fileName=0, const unsigned int lineNumber=0 );