mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
Merged revisions 65654 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r65654 | martin.v.loewis | 2008-08-12 16:49:50 +0200 (Tue, 12 Aug 2008) | 6 lines Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple, by denying s# to parse objects that have a releasebuffer procedure, and introducing s*. More module might need to get converted to use s*. ........
This commit is contained in:
parent
688356f59f
commit
423be95dcf
32 changed files with 721 additions and 390 deletions
|
@ -1567,11 +1567,11 @@ s_unpack(PyObject *self, PyObject *input)
|
|||
PyErr_Format(StructError,
|
||||
"unpack requires a bytes argument of length %zd",
|
||||
soself->s_size);
|
||||
PyObject_ReleaseBuffer(input, &vbuf);
|
||||
PyBuffer_Release(&vbuf);
|
||||
return NULL;
|
||||
}
|
||||
result = s_unpack_internal(soself, vbuf.buf);
|
||||
PyObject_ReleaseBuffer(input, &vbuf);
|
||||
PyBuffer_Release(&vbuf);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
@ -1609,11 +1609,11 @@ s_unpack_from(PyObject *self, PyObject *args, PyObject *kwds)
|
|||
PyErr_Format(StructError,
|
||||
"unpack_from requires a buffer of at least %zd bytes",
|
||||
soself->s_size);
|
||||
PyObject_ReleaseBuffer(input, &vbuf);
|
||||
PyBuffer_Release(&vbuf);
|
||||
return NULL;
|
||||
}
|
||||
result = s_unpack_internal(soself, (char*)vbuf.buf + offset);
|
||||
PyObject_ReleaseBuffer(input, &vbuf);
|
||||
PyBuffer_Release(&vbuf);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue