summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-06-24 22:57:10 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-06-24 22:57:10 (GMT)
commit21e09487ac9d4365819ae4de31319ae3df9a8b17 (patch)
treef9bb10a2bca800081496d4c2d5444a623b61d2bc /Python
parent8bae4ec62211bb71e4bad87b1a912301f616fb37 (diff)
downloadcpython-21e09487ac9d4365819ae4de31319ae3df9a8b17.zip
cpython-21e09487ac9d4365819ae4de31319ae3df9a8b17.tar.gz
cpython-21e09487ac9d4365819ae4de31319ae3df9a8b17.tar.bz2
getbuffer(): release the buffer on error (if the buffer is not contiguous)
Diffstat (limited to 'Python')
-rw-r--r--Python/getargs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/getargs.c b/Python/getargs.c
index ab95e1e..41b4af5 100644
--- a/Python/getargs.c
+++ b/Python/getargs.c
@@ -1340,6 +1340,7 @@ getbuffer(PyObject *arg, Py_buffer *view, char **errmsg)
return -1;
}
if (!PyBuffer_IsContiguous(view, 'C')) {
+ PyBuffer_Release(view);
*errmsg = "contiguous buffer";
return -1;
}