]> Creatis software - clitk.git/blobdiff - common/clitkExceptionObject.cxx
Debug: correct wrong flag in condition
[clitk.git] / common / clitkExceptionObject.cxx
index cadc7b88653b4791206843d2ae5fc985d56aa834..4b9d62a744595eb0f2beea0f128aed0c159423c5 100644 (file)
@@ -3,7 +3,7 @@
 
   Authors belong to: 
   - University of LYON              http://www.universite-lyon.fr/
-  - Léon Bérard cancer center       http://oncora1.lyon.fnclcc.fr
+  - Léon Bérard cancer center       http://www.centreleonberard.fr
   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
 
   This software is distributed WITHOUT ANY WARRANTY; without even
@@ -14,7 +14,7 @@
 
   - BSD        See included LICENSE.txt file
   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
-  ======================================================================-====*/
+  ===========================================================================**/
 
 // clitk
 #include "clitkExceptionObject.h"
@@ -38,9 +38,8 @@ const char* clitk::ExceptionObject::what() const throw()
   message << "clitk::ERROR in " << m_Filename << " line " << m_LineNumber
           << " : " << std::endl << "\t" << m_Message;
   char * m = new char[message.str().length()];
-  for(uint i=0; i< message.str().length(); i++)
-    m[i] = message.str().c_str()[i];
-  return m;//essage.str().c_str();
+  strcpy(m, message.str().c_str());
+  return m;
 }
 //--------------------------------------------------------------------