mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 04:20:08 +01:00
mesa: Fix memory leak if we run out of memory
Signed-off-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
parent
c0a61c8442
commit
96128fdf2f
1 changed files with 5 additions and 1 deletions
|
|
@ -589,8 +589,12 @@ _mesa_make_temp_chan_image(GLcontext *ctx, GLuint dims,
|
|||
/* unpack and transfer the source image */
|
||||
tempImage = (GLchan *) _mesa_malloc(srcWidth * srcHeight * srcDepth
|
||||
* components * sizeof(GLchan));
|
||||
if (!tempImage)
|
||||
if (!tempImage) {
|
||||
if (freeSrcImage) {
|
||||
_mesa_free((void *) srcAddr);
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
dst = tempImage;
|
||||
for (img = 0; img < srcDepth; img++) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue