gh-87526: Remove dead initialization from _zoneinfo parse_abbr() (#24700)

This commit is contained in:
Alex Henrie 2023-05-12 00:48:42 -06:00 committed by GitHub
parent f0f5bb3204
commit 3c2992e58b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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) != '>') {