diff options
| author | Joakim Verona | 2013-08-19 23:01:49 +0200 |
|---|---|---|
| committer | Joakim Verona | 2013-08-19 23:01:49 +0200 |
| commit | fc11c16f9970babaca1a0278f6b4552f4eff9d38 (patch) | |
| tree | 9b17eb14733040e27eb0dd1346084be5f110047e /src/ChangeLog | |
| parent | 0718a5a7c63d006beed121033dc37ee4f229bd24 (diff) | |
| parent | bb566ceafe3230d55923cb3043c3b231e4b9c0f9 (diff) | |
| download | emacs-fc11c16f9970babaca1a0278f6b4552f4eff9d38.tar.gz emacs-fc11c16f9970babaca1a0278f6b4552f4eff9d38.zip | |
merge from trunk
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 2171f2b8748..d0bafd3914e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | 2013-08-19 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * image.c: Shrink memory needed for animation cache. | ||
| 4 | (SIGNATURE_DIGESTSIZE): New constant. | ||
| 5 | (struct animation_cache): Make 'signature' a fixed size array of bytes. | ||
| 6 | (imagemagick_create_cache): Copy the signature. This saves | ||
| 7 | several KB of memory that ImageMagick wastes per signature. | ||
| 8 | Don't bother updating the update_time, as the caller does that now. | ||
| 9 | (imagemagick_prune_animation_cache): Don't destroy the signature, as | ||
| 10 | it's a fixed size struct member now. | ||
| 11 | (imagemagick_get_animation_cache): Always destroy the signature, | ||
| 12 | as it's now imagemagick_create_cache's responsibility to copy it. | ||
| 13 | Avoid duplicate calls to strcmp and to imagemagick_create_cache, | ||
| 14 | and use memcmp rather than strcmp. | ||
| 15 | eassert that ImageMagick returns a signature of the specified length. | ||
| 16 | |||
| 1 | 2013-08-19 Lars Magne Ingebrigtsen <larsi@gnus.org> | 17 | 2013-08-19 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 18 | ||
| 3 | * image.c (imagemagick_get_animation_cache): Don't segfault on | 19 | * image.c (imagemagick_get_animation_cache): Don't segfault on |