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
a1d6f399
Commit
a1d6f399
authored
Dec 13, 2015
by
Vinay Sajip
Browse files
Options
Browse Files
Download
Plain Diff
Fixes #25844: Corrected =/== typo potentially leading to crash in launcher.
parents
1a316e82
abeb6479
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
PC/launcher.c
PC/launcher.c
+1
-1
No files found.
PC/launcher.c
View file @
a1d6f399
...
...
@@ -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
);
...
...
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