diff options
| author | Christian Heimes <christian@cheimes.de> | 2013-10-29 20:16:58 (GMT) |
|---|---|---|
| committer | Christian Heimes <christian@cheimes.de> | 2013-10-29 20:16:58 (GMT) |
| commit | dc6b933d2333e3928c73554a3dcf171ab4611b7d (patch) | |
| tree | b80503e4710d4c3cafad950d900cd34c8654c91e /Objects/abstract.c | |
| parent | ee0bac66b2f388e2d685fa5eee2f7a4ea3910186 (diff) | |
| parent | 34f7383d7ae1d3d040b3978680b9498c4ed150f5 (diff) | |
| download | cpython-dc6b933d2333e3928c73554a3dcf171ab4611b7d.zip cpython-dc6b933d2333e3928c73554a3dcf171ab4611b7d.tar.gz cpython-dc6b933d2333e3928c73554a3dcf171ab4611b7d.tar.bz2 | |
merge
Diffstat (limited to 'Objects/abstract.c')
| -rw-r--r-- | Objects/abstract.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c index 6c7a6cd..91df5da 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c @@ -2144,6 +2144,8 @@ PyObject_CallFunction(PyObject *callable, const char *format, ...) } else args = PyTuple_New(0); + if (args == NULL) + return NULL; return call_function_tail(callable, args); } |
