BUGFIX 2970556: Fix possible overflow in material importer ( obj ) .
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@833 67173fc5-114c-0410-ac8e-9d2fd5bffc1fpull/1/head
parent
613a4cc679
commit
b0d8d83b75
|
@ -62,7 +62,7 @@ struct Material;
|
|||
class ObjFileMtlImporter
|
||||
{
|
||||
public:
|
||||
static const size_t BUFFERSIZE = 1024;
|
||||
static const size_t BUFFERSIZE = 2048;
|
||||
typedef std::vector<char> DataArray;
|
||||
typedef std::vector<char>::iterator DataArrayIt;
|
||||
typedef std::vector<char>::const_iterator ConstDataArrayIt;
|
||||
|
|
Loading…
Reference in New Issue