Mercurial > hg > xemacs-beta
diff src/glyphs-eimage.c @ 1726:a8d8f419b459
[xemacs-hg @ 2003-09-30 15:26:34 by james]
Add type information to xfree to avoid alias creation.
author | james |
---|---|
date | Tue, 30 Sep 2003 15:27:01 +0000 |
parents | 79c6ff3eef26 |
children | 543769b89fed |
line wrap: on
line diff
--- a/src/glyphs-eimage.c Mon Sep 29 21:53:04 2003 +0000 +++ b/src/glyphs-eimage.c Tue Sep 30 15:27:01 2003 +0000 @@ -158,7 +158,8 @@ if (data->instream) retry_fclose (data->instream); - if (data->eimage) xfree (data->eimage); + if (data->eimage) + xfree (data->eimage, UChar_Binary *); return Qnil; } @@ -553,7 +554,7 @@ GifFree(data->giffile); } if (data->eimage) - xfree (data->eimage); + xfree (data->eimage, UChar_Binary *); return Qnil; } @@ -842,7 +843,8 @@ if (data->instream) retry_fclose (data->instream); - if (data->eimage) xfree(data->eimage); + if (data->eimage) + xfree(data->eimage, UChar_Binary *); return Qnil; } @@ -1023,7 +1025,7 @@ } #endif - xfree (row_pointers); + xfree (row_pointers, UChar_Binary **); } /* now instantiate */ @@ -1083,7 +1085,7 @@ TIFFClose(data->tiff); } if (data->eimage) - xfree (data->eimage); + xfree (data->eimage, UChar_Binary *); return Qnil; }