mirror of https://github.com/GNOME/gimp.git
fixed signedness issue.
2005-08-15 Sven Neumann <sven@gimp.org> * plug-ins/common/psd_save.c: fixed signedness issue.
This commit is contained in:
parent
520fde5a63
commit
c61dc13630
|
@ -1,3 +1,7 @@
|
|||
2005-08-15 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* plug-ins/common/psd_save.c: fixed signedness issue.
|
||||
|
||||
2005-08-14 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* plug-ins/common/jigsaw.c
|
||||
|
|
|
@ -1071,9 +1071,8 @@ write_pixel_data (FILE *fd, gint32 drawableID, gint32 *ChanLenPosition,
|
|||
gimp_tile_cache_ntiles (2* (drawable->width / gimp_tile_width () + 1));
|
||||
|
||||
LengthsTable = g_new (gshort, height);
|
||||
rledata = g_new (gchar, (MIN(height, tile_height) *
|
||||
(width + 10 + (width/100))));
|
||||
|
||||
rledata = g_new (guchar, (MIN (height, tile_height) *
|
||||
(width + 10 + (width / 100))));
|
||||
|
||||
data = g_new (guchar, MIN(height, tile_height) * width * bytes);
|
||||
|
||||
|
|
Loading…
Reference in New Issue