mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
do not leak buffer if mmap is not writable
This commit is contained in:
parent
4c8b2cd126
commit
3776836f67
1 changed files with 3 additions and 1 deletions
|
@ -383,8 +383,10 @@ mmap_write_method(mmap_object *self,
|
|||
if (!PyArg_ParseTuple(args, "y*:write", &data))
|
||||
return(NULL);
|
||||
|
||||
if (!is_writable(self))
|
||||
if (!is_writable(self)) {
|
||||
PyBuffer_Release(&data);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (self->pos > self->size || self->size - self->pos < data.len) {
|
||||
PyBuffer_Release(&data);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue