From 89acd29463a64990f3a8993cbeda1613136058b9 Mon Sep 17 00:00:00 2001 From: rdb Date: Thu, 2 Apr 2015 11:30:08 +0200 Subject: [PATCH] Fixed unitialized variable in maya2egg --- pandatool/src/mayaegg/mayaNodeTree.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandatool/src/mayaegg/mayaNodeTree.cxx b/pandatool/src/mayaegg/mayaNodeTree.cxx index 9c577bc111..06249d93fd 100755 --- a/pandatool/src/mayaegg/mayaNodeTree.cxx +++ b/pandatool/src/mayaegg/mayaNodeTree.cxx @@ -656,7 +656,7 @@ r_build_node(const string &path) { // Otherwise, we have to create it. Do this recursively, so we // create each node along the path. - MayaNodeDesc *node_desc; + MayaNodeDesc *node_desc = NULL; //mayaegg_cat.info() << "path: " << path << endl; if (path.empty()) {