X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=common%2FclitkExceptionObject.cxx;h=2b25696ba4c4f0fc810912bb8c07c09928b6b91b;hb=1fea92ac237c16c1f027ffabdb42066f6f4f6114;hp=cadc7b88653b4791206843d2ae5fc985d56aa834;hpb=93e09279bd439543f98bd59b01dd8ef4f3b26fa4;p=clitk.git diff --git a/common/clitkExceptionObject.cxx b/common/clitkExceptionObject.cxx index cadc7b8..2b25696 100644 --- a/common/clitkExceptionObject.cxx +++ b/common/clitkExceptionObject.cxx @@ -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; } //--------------------------------------------------------------------