Cycles: Fix possible uninitialized XML read state which might cause crashes

This commit is contained in:
Sergey Sharybin
2015-04-30 15:46:09 +05:00
parent 2909975385
commit 16794f908f

View File

@@ -55,6 +55,16 @@ struct XMLReadState {
string base; /* base path to current file*/
float dicing_rate; /* current dicing rate */
Mesh::DisplacementMethod displacement_method;
XMLReadState()
: scene(NULL),
smooth(false),
shader(0),
dicing_rate(0.0f),
displacement_method(Mesh::DISPLACE_BUMP)
{
tfm = transform_identity();
}
};
/* Attribute Reading */