summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKim Woelders <kim@woelders.dk>2016-04-29 17:51:25 +0200
committerKim Woelders <kim@woelders.dk>2016-04-29 19:29:37 +0200
commit9780f8dbc40332a8cb2cd0e91d2a552c2ce5d176 (patch)
tree3dc3b4ae80dad5cbf8f113fafd16b6eba71468b5
parenta0259d5181b9bd5c2e74077dea4ae36472798a96 (diff)
downloadimlib2-9780f8dbc40332a8cb2cd0e91d2a552c2ce5d176.tar.gz
1.4.9.v1.4.9
-rw-r--r--ChangeLog34
-rw-r--r--configure.ac4
2 files changed, 36 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 94429e8..ccc2107 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,39 @@
***
+*** Version 1.4.9 ***
+***
+
+Alexander Smirnov (1):
+ Fix cross-endianness for masks (1-bit depth images)
+
+Bernhard Übelacker (1):
+ gif: fix oob reads w/bad colormaps
+
+Kim Woelders (16):
+ Fix "assuming signed overflow does not occur" warning.
+ Fix some "variable set but not used" warnings.
+ Fix some "variable might be clobbered" warnings.
+ Fix off-by-one OOB read in __imlib_MergeUpdate().
+ Revert "gif: fix oob reads w/bad colormaps"
+ GIF loader: Fix out-of-bound reads from colormap.
+ GIF loader: Remove check made redundant by previous commit.
+ GIF loader: Reduce progress checks from per-pixel to per-row.
+ GIF loader: Indent.
+ Fix potential divide-by-zero in imlib_image_draw_ellipse().
+ Make a number of functions static.
+ Eliminate pImlibExternalFilter type.
+ Trivial file function cleanups.
+ Move __imlib_ItemInList() to file.c.
+ Fix various potential OOM crashes.
+ 1.4.9.
+
+Yuriy M. Kaminskiy (3):
+ Fix integer overflow resulting in insufficient heap allocation
+ loader_xpm: remove nonsense/impossible/broken condition
+ Harden API and internals against overly large images
+
+
+***
*** Version 1.4.8 ***
***
diff --git a/configure.ac b/configure.ac
index 566f3cd..6fa7fac 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
# get rid of that stupid cache mechanism
rm -f config.cache
-AC_INIT([imlib2], [1.4.8], [enlightenment-devel@lists.sourceforge.net])
+AC_INIT([imlib2], [1.4.9], [enlightenment-devel@lists.sourceforge.net])
AC_CONFIG_SRCDIR(configure.ac)
AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_BUILD
@@ -23,7 +23,7 @@ define([AC_LIBTOOL_LANG_F77_CONFIG], [:])dnl
LT_INIT
VERSION_CUR=5
-VERSION_REV=8
+VERSION_REV=9
VERSION_AGE=4
lt_version=${VERSION_CUR}:${VERSION_REV}:${VERSION_AGE}
AC_SUBST(lt_version)