gh-90110: Update the C-analyzer Tool (gh-99307)

This commit is contained in:
Eric Snow 2022-11-10 09:03:57 -07:00 committed by GitHub
parent 6dedf42527
commit 73679b13ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 90 deletions

View file

@ -1718,7 +1718,7 @@ ZlibDecompressor__new__(PyTypeObject *cls,
PyObject *kwargs)
{
static char *keywords[] = {"wbits", "zdict", NULL};
static char *format = "|iO:_ZlibDecompressor";
static const char * const format = "|iO:_ZlibDecompressor";
int wbits = MAX_WBITS;
PyObject *zdict = NULL;
zlibstate *state = PyType_GetModuleState(cls);