Zero-initialize buf. Fixes #3557.

This commit is contained in:
Martin v. Löwis 2008-08-15 06:27:17 +00:00
parent 1f9d907c90
commit c17517589a
1 changed files with 1 additions and 0 deletions

View File

@ -488,6 +488,7 @@ SHA1_new(PyObject *self, PyObject *args, PyObject *kwdict)
static char *kwlist[] = {"string", NULL};
SHA1object *new;
Py_buffer buf;
buf.buf = NULL;
if (!PyArg_ParseTupleAndKeywords(args, kwdict, "|s*:new", kwlist,
&buf)) {