From b6f39da3aadc6e0d305950a8129bb7dc3ce228d3 Mon Sep 17 00:00:00 2001 From: kichik Date: Sat, 15 Apr 2006 12:41:09 +0000 Subject: [PATCH] initialize path git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4656 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/util.cpp b/Source/util.cpp index 222a6b59..8fa98ce0 100644 --- a/Source/util.cpp +++ b/Source/util.cpp @@ -655,7 +655,7 @@ string get_executable_path(const char* argv0) { if( envpath != NULL ) return get_full_path( envpath ); else { char* pathtmp; - char* path; + char* path = NULL; size_t len = 100; size_t nchars; while(1){