From b8d2e9f8f65ea5a082c008866cea162c4d4aab13 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Sat, 30 Apr 2011 06:02:28 +0000 Subject: [PATCH] Initialize a couple of members accidentally left uninitialized. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12647 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Source/Modules/go.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Modules/go.cxx b/Source/Modules/go.cxx index 3b47ec0b0..c704e1a4d 100644 --- a/Source/Modules/go.cxx +++ b/Source/Modules/go.cxx @@ -103,6 +103,8 @@ public: saw_import(false), imported_package(NULL), interfaces(NULL), + class_node(NULL), + class_name(NULL), class_receiver(NULL), class_methods(NULL), making_variable_wrappers(false),