mirror of https://github.com/python/cpython
gh-120155: Fix Coverity issue in parse_string() (#120997)
This commit is contained in:
parent
2d3187bf20
commit
769aea3329
|
@ -229,9 +229,14 @@ _PyPegen_parse_string(Parser *p, Token *t)
|
|||
PyErr_BadInternalCall();
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* Skip the leading quote char. */
|
||||
s++;
|
||||
len = strlen(s);
|
||||
// gh-120155: 's' contains at least the trailing quote,
|
||||
// so the code '--len' below is safe.
|
||||
assert(len >= 1);
|
||||
|
||||
if (len > INT_MAX) {
|
||||
PyErr_SetString(PyExc_OverflowError, "string to parse is too long");
|
||||
return NULL;
|
||||
|
|
Loading…
Reference in New Issue