Skip to content
Snippets Groups Projects
Commit 2c9d12ed authored by Thomas Feuvrier's avatar Thomas Feuvrier
Browse files

Suppression du update sur le reader (plus besoin et empeche le streaming)

parent b7c00518
No related branches found
No related tags found
No related merge requests found
......@@ -75,6 +75,11 @@ int generic_otbMultiToMonoChannelExtractROI ( int argc, char * argv[], const cha
std::cout << err << std::endl;
return EXIT_FAILURE;
}
catch( std::bad_alloc & err )
{
std::cout << "Exception bad_alloc : "<<(char*)err.what()<< std::endl;
return EXIT_FAILURE;
}
catch( ... )
{
std::cout << "Exception levee inconnue !" << std::endl;
......
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