Skip to content

Commit

Permalink
bpo-43360: Remove dead initialization from parse_abbr function
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhenrie committed May 12, 2023
1 parent ac66cc1 commit 56c7acf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/_zoneinfo.c
Original file line number Diff line number Diff line change
Expand Up @@ -1709,11 +1709,11 @@ static Py_ssize_t
parse_abbr(const char *const p, PyObject **abbr)
{
const char *ptr = p;
char buff = *ptr;
const char *str_start;
const char *str_end;

if (*ptr == '<') {
char buff;
ptr++;
str_start = ptr;
while ((buff = *ptr) != '>') {
Expand Down

0 comments on commit 56c7acf

Please sign in to comment.