diff --git a/code/ColladaLoader.cpp b/code/ColladaLoader.cpp index 9a18d8223..b6e598128 100644 --- a/code/ColladaLoader.cpp +++ b/code/ColladaLoader.cpp @@ -1399,6 +1399,15 @@ void ColladaLoader::ConvertPath (aiString& ss) ss.data[ss.length] = '\0'; } + // Maxon Cinema Collada Export writes "file:///C:\andsoon" with three slashes... + // I need to filter it without destroying linux paths starting with "/somewhere" + if( ss.data[0] == '/' && isalpha( ss.data[1]) && ss.data[2] == ':' ) + { + ss.length--; + memmove( ss.data, ss.data+1, ss.length); + ss.data[ss.length] = 0; + } + // find and convert all %xyz special chars char* out = ss.data; for( const char* it = ss.data; it != ss.data + ss.length; /**/ ) diff --git a/code/ColladaParser.cpp b/code/ColladaParser.cpp index ea323b323..b3f31a1e1 100644 --- a/code/ColladaParser.cpp +++ b/code/ColladaParser.cpp @@ -1695,10 +1695,10 @@ void ColladaParser::ReadDataArray() SkipSpacesAndLineEnd( &content); } } - } - // test for closing tag - TestClosing( elmName.c_str()); + // test for closing tag + TestClosing( elmName.c_str()); + } } // ------------------------------------------------------------------------------------------------ @@ -2705,11 +2705,11 @@ const char* ColladaParser::TestTextContent() { // present node should be the beginning of an element if( mReader->getNodeType() != irr::io::EXN_ELEMENT || mReader->isEmptyElement()) - ThrowException( "Expected opening element"); + return NULL; // read contents of the element - if( !mReader->read()) - ThrowException( "Unexpected end of file while reading n element."); + if( !mReader->read() ) + return NULL; if( mReader->getNodeType() != irr::io::EXN_TEXT) return NULL;