Repair multiple breakage in Windows-specific code for appending '.exe'.

This commit is contained in:
Tom Lane 2011-02-02 20:26:43 -05:00
parent 907855ac75
commit cd7d748d51
1 changed files with 3 additions and 9 deletions

View File

@ -186,16 +186,10 @@ validate_exec(const char *dir, const char *cmdName)
snprintf(path, sizeof(path), "%s/%s", dir, cmdName);
#ifdef WIN32
/* Win32 requires a .exe suffix for stat() */
char path_exe[MAXPGPATH + sizeof(EXE_EXT) - 1];
if (strlen(path) >= strlen(EXE_EXT) &&
/* Windows requires a .exe suffix for stat() */
if (strlen(path) <= strlen(EXE_EXT) ||
pg_strcasecmp(path + strlen(path) - strlen(EXE_EXT), EXE_EXT) != 0)
{
strcpy(path_exe, path);
strcat(path_exe, EXE_EXT);
path = path_exe;
}
strlcat(path, EXE_EXT, sizeof(path));
#endif
/*