Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
999d0f9a
Commit
999d0f9a
authored
Dec 13, 2015
by
Vinay Sajip
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #25844: Corrected =/== typo potentially leading to crash in launcher.
parent
13cf4904
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
PC/launcher.c
PC/launcher.c
+2
-2
No files found.
PC/launcher.c
View file @
999d0f9a
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment