mirror of
https://github.com/python/cpython.git
synced 2025-07-28 05:34:31 +00:00
Fix type errors.
This commit is contained in:
parent
5d4cf5ecc1
commit
f33dea2961
1 changed files with 2 additions and 2 deletions
|
@ -21,11 +21,11 @@ asdl_seq_new(int size, PyArena *arena)
|
|||
asdl_int_seq *
|
||||
asdl_int_seq_new(int size, PyArena *arena)
|
||||
{
|
||||
asdl_seq *seq = NULL;
|
||||
asdl_int_seq *seq = NULL;
|
||||
size_t n = sizeof(asdl_seq) +
|
||||
(size ? (sizeof(int) * (size - 1)) : 0);
|
||||
|
||||
seq = (asdl_seq *)PyArena_Malloc(arena, n);
|
||||
seq = (asdl_int_seq *)PyArena_Malloc(arena, n);
|
||||
if (!seq) {
|
||||
PyErr_NoMemory();
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue