changeset 501:a4d67b117238

A callback pointer for the IndentHandler was not NULL initialized and could cause a crash. git-svn-id: svn://svn.code.sf.net/p/universalindent/code/trunk@741 59b1889a-e5ac-428c-b0c7-476e01d41282
author thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
date Wed, 25 Jun 2008 09:33:33 +0000
parents 70e6985f83a2
children 629bd77efb5f
files src/indenthandler.cpp
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/indenthandler.cpp	Wed Jun 25 09:32:45 2008 +0000
+++ b/src/indenthandler.cpp	Wed Jun 25 09:33:33 2008 +0000
@@ -50,6 +50,7 @@
     this->mainWindow = mainWindow;
 
     parameterChangedCallback = NULL;
+    windowClosedCallback = NULL;
     indenterSettings = NULL;
     menuIndenter = NULL;
     actionLoad_Indenter_Config_File = NULL;