Browse Source

progs/util: Fix memory leak if LoadRGBImage fails.

(cherry picked from commit 041cd0e110)
tags/mesa-7.6.1-rc2-1
Vinson Lee 15 years ago
parent
commit
f1172c4030
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      progs/util/readtex.c

+ 4
- 1
progs/util/readtex.c View File

@@ -357,6 +357,7 @@ GLubyte *LoadRGBImage( const char *imageFile, GLint *width, GLint *height,
fprintf(stderr,
"Error in LoadRGBImage %d-component images not implemented\n",
image->components );
FreeImage(image);
return NULL;
}

@@ -365,8 +366,10 @@ GLubyte *LoadRGBImage( const char *imageFile, GLint *width, GLint *height,

bytes = image->sizeX * image->sizeY * image->components;
buffer = (GLubyte *) malloc(bytes);
if (!buffer)
if (!buffer) {
FreeImage(image);
return NULL;
}

memcpy( (void *) buffer, (void *) image->data, bytes );


Loading…
Cancel
Save