mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Use size_t, not ssize_t (issue #14801).
This commit is contained in:
parent
87960da3e3
commit
682d94c11a
1 changed files with 1 additions and 1 deletions
|
@ -2379,7 +2379,7 @@ PyType_FromSpec(PyType_Spec *spec)
|
|||
/* need to make a copy of the docstring slot, which usually
|
||||
points to a static string literal */
|
||||
if (slot->slot == Py_tp_doc) {
|
||||
ssize_t len = strlen(slot->pfunc)+1;
|
||||
size_t len = strlen(slot->pfunc)+1;
|
||||
char *tp_doc = PyObject_MALLOC(len);
|
||||
if (tp_doc == NULL)
|
||||
goto fail;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue