Skip to content
Snippets Groups Projects
Commit 626efe8d authored by Julien Malik's avatar Julien Malik
Browse files

BUG: fix possible stack smashing when exception text is long

parent da76e4c6
No related branches found
No related tags found
No related merge requests found
......@@ -27,9 +27,9 @@
try {
$action
} catch( itk::ExceptionObject &ex ) {
char error_msg[256];
sprintf( error_msg, "Exception thrown in otbApplication $symname: %s", ex.what() );
SWIG_exception( SWIG_RuntimeError, error_msg );
std::ostringstream oss;
oss << "Exception thrown in otbApplication $symname: " << ex.what();
SWIG_exception( SWIG_RuntimeError, oss.str().c_str() );
} catch( ... ) {
SWIG_exception( SWIG_UnknownError, "Unknown exception thrown in otbApplication $symname" );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment