From 250788453fa64adef423b4f5b0294922c91a4c46 Mon Sep 17 00:00:00 2001 From: Alexandre Vassalotti Date: Tue, 10 Jun 2008 16:43:26 +0000 Subject: Fixed _bsddb key allocation errors. --- Modules/_bsddb.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Modules/_bsddb.c b/Modules/_bsddb.c index 3a67a1e..9e31029 100644 --- a/Modules/_bsddb.c +++ b/Modules/_bsddb.c @@ -312,6 +312,10 @@ static Py_buffer * _malloc_view(PyObject *obj) "Py_buffer malloc failed"); return NULL; } + + if (PyObject_GetBuffer(obj, view, PyBUF_SIMPLE)) + return NULL; + if (view->ndim > 1) { PyErr_SetString(PyExc_BufferError, "buffers must be single dimension"); -- cgit v0.12