Set ExecutableName to "geany" to prevent possible crashes on Windows and maybe other systems.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2531 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2008-04-25 16:14:29 +00:00
parent 9cc12c9846
commit 6ca83a8754
2 changed files with 4 additions and 1 deletions

View File

@ -5,6 +5,9 @@
from document_save_file().
Include missing error string in error message when writing the
file failed.
* tagmanager/ctags.c:
Set ExecutableName to "geany" to prevent possible crashes on
Windows and maybe other systems.
2008-04-25 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>

View File

@ -219,7 +219,7 @@ char *CurrentDirectory = NULL;
#ifdef HAVE_MKSTEMP
static const char *ExecutableProgram = NULL;
#endif
static const char *ExecutableName = NULL;
static const char *ExecutableName = "geany";
static stringList* Excluded = NULL;
static struct { long files, lines, bytes; } Totals = { 0, 0, 0 };