diff options
author | Christian Heimes <christian@python.org> | 2016-09-13 10:07:16 +0200 |
---|---|---|
committer | Christian Heimes <christian@python.org> | 2016-09-13 10:07:16 +0200 |
commit | faf2cea1fdae5bdb99d3406bda2fe6090890d4fe (patch) | |
tree | dc64f695f06f3036cf288812c1d59f03f5717a78 /Modules/socketmodule.c | |
parent | 7a9e993f412551607b74fe83344a8fda11a17425 (diff) | |
download | cpython-git-faf2cea1fdae5bdb99d3406bda2fe6090890d4fe.tar.gz |
Fix NULL check in sock_sendmsg_iovec. CID 1372885
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r-- | Modules/socketmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index eee607fd13..e87f790fb0 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -3943,7 +3943,7 @@ sock_sendmsg_iovec(PySocketSockObject *s, PyObject *data_arg, msg->msg_iov = iovs; databufs = PyMem_New(Py_buffer, ndataparts); - if (iovs == NULL) { + if (databufs == NULL) { PyErr_NoMemory(); goto finally; } |