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
c0d5faa9
Commit
c0d5faa9
authored
Oct 21, 2005
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Free coding spec (cs) if there was an error to prevent mem leak. Maybe backport candidate
parent
1e8659b9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
Parser/tokenizer.c
Parser/tokenizer.c
+3
-0
No files found.
Parser/tokenizer.c
View file @
c0d5faa9
...
...
@@ -277,11 +277,14 @@ check_coding_spec(const char* line, int size, struct tok_state *tok,
tok
->
encoding
=
cs
;
tok
->
decoding_state
=
-
1
;
}
else
PyMem_DEL
(
cs
);
#else
/* Without Unicode support, we cannot
process the coding spec. Since there
won't be any Unicode literals, that
won't matter. */
PyMem_DEL
(
cs
);
#endif
}
}
else
{
/* then, compare cs with BOM */
...
...
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