From c8ec2d3e05615e456aab95885832bc2b97caf7ab Mon Sep 17 00:00:00 2001 From: dbocksteger Date: Thu, 4 Oct 2018 05:57:43 +0000 Subject: [PATCH] Added Default-value for ISceneNode->Name so the code won't crash if someone tries to compare it with empty... git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@5645 dfc29bdd-3216-0410-991c-e03cc46cb475 --- include/ISceneNode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ISceneNode.h b/include/ISceneNode.h index 1e903857..93786d96 100644 --- a/include/ISceneNode.h +++ b/include/ISceneNode.h @@ -821,7 +821,7 @@ namespace scene } //! Name of the scene node. - core::stringc Name; + core::stringc Name = ""; //! Absolute transformation of the node. core::matrix4 AbsoluteTransformation;