commit | 4956d2b88981fd5a6481cd048d7efd514594b6e9 | [log] [tgz] |
---|---|---|
author | Christian Heimes <christian@cheimes.de> | Fri Jan 18 19:12:56 2008 +0000 |
committer | Christian Heimes <christian@cheimes.de> | Fri Jan 18 19:12:56 2008 +0000 |
tree | 908e04f18f858eba08770a241e6991bdf33da5ec | |
parent | 288e89acfc29cf857a8c5d314ba2dd3398a2eae9 [diff] [blame] |
Silence Coverity false alerts with CIDs #172, #183, #184
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 @@ PyErr_NoMemory(); return NULL; } + /* coverity[ampersand_in_size] */ return PyObject_NEW_VAR(PyLongObject, &PyLong_Type, size); }