summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
Diffstat (limited to 'Objects')
-rw-r--r--Objects/longobject.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c
index 1094670..e1e9b51 100644
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -70,6 +70,7 @@ _PyLong_New(Py_ssize_t size)
PyErr_NoMemory();
return NULL;
}
+ /* coverity[ampersand_in_size] */
return PyObject_NEW_VAR(PyLongObject, &PyLong_Type, size);
}