summaryrefslogtreecommitdiffstats
path: root/PC/launcher.c
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2015-12-13 09:41:29 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2015-12-13 09:41:29 (GMT)
commitabeb6479bd59c998fc5e78ba70f300eec9da90ee (patch)
tree5a9fc7568b708eb20ac4b2edb7a2392747f14c06 /PC/launcher.c
parent0ac3a0cd7932079724aaabbb0a078e1c17129068 (diff)
downloadcpython-abeb6479bd59c998fc5e78ba70f300eec9da90ee.zip
cpython-abeb6479bd59c998fc5e78ba70f300eec9da90ee.tar.gz
cpython-abeb6479bd59c998fc5e78ba70f300eec9da90ee.tar.bz2
Fixes #25844: Corrected =/== typo potentially leading to crash in launcher.
Diffstat (limited to 'PC/launcher.c')
-rw-r--r--PC/launcher.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/launcher.c b/PC/launcher.c
index fa08684..bbb28da 100644
--- a/PC/launcher.c
+++ b/PC/launcher.c
@@ -114,7 +114,7 @@ static wchar_t * get_env(wchar_t * key)
if (result >= BUFSIZE) {
/* Large environment variable. Accept some leakage */
wchar_t *buf2 = (wchar_t*)malloc(sizeof(wchar_t) * (result+1));
- if (buf2 = NULL) {
+ if (buf2 == NULL) {
error(RC_NO_MEMORY, L"Could not allocate environment buffer");
}
GetEnvironmentVariableW(key, buf2, result);
@@ -1219,7 +1219,7 @@ path '%s'", command);
* is no version specification.
*/
debug(L"searching PATH for python executable\n");
- cmd = find_on_path(L"python");
+ cmd = find_on_path(PYTHON_EXECUTABLE);
debug(L"Python on path: %s\n", cmd ? cmd->value : L"<not found>");
if (cmd) {
debug(L"located python on PATH: %s\n", cmd->value);