fix mem leak in tiff loader

SVN revision: 38542
This commit is contained in:
Vincent Torri 2009-01-10 22:44:04 +00:00
parent 6a337b0c4e
commit ed7157e3d5
1 changed files with 1 additions and 0 deletions

View File

@ -183,6 +183,7 @@ evas_image_load_file_head_tiff(Image_Entry *ie, const char *file, const char *ke
ie->w = tiff_image.width;
ie->h = tiff_image.height;
TIFFRGBAImageEnd(&tiff_image);
TIFFClose(tif);
return 1;
}