initialize path

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4656 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2006-04-15 12:41:09 +00:00
parent b97466fdf7
commit b6f39da3aa

View file

@ -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){