Skip to content

Commit

Permalink
Release buffer if function returns prematurely
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Jan 26, 2020
1 parent 4b626ea commit e7ce609
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/map.c
Expand Up @@ -355,17 +355,21 @@ PyImaging_MapBuffer(PyObject* self, PyObject* args)

if (view.len < 0) {
PyErr_SetString(PyExc_ValueError, "buffer has negative size");
PyBuffer_Release(&view);
return NULL;
}
if (offset + size > view.len) {
PyErr_SetString(PyExc_ValueError, "buffer is not large enough");
PyBuffer_Release(&view);
return NULL;
}

im = ImagingNewPrologueSubtype(
mode, xsize, ysize, sizeof(ImagingBufferInstance));
if (!im)
if (!im) {
PyBuffer_Release(&view);
return NULL;
}

/* setup file pointers */
if (ystep > 0)
Expand Down

0 comments on commit e7ce609

Please sign in to comment.