aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/image.c b/src/image.c
index 00f2a035c44..2b415fb9b97 100644
--- a/src/image.c
+++ b/src/image.c
@@ -7938,11 +7938,11 @@ imagemagick_get_animation_cache (MagickWand *wand)
7938 return animation_cache; 7938 return animation_cache;
7939 } 7939 }
7940 7940
7941 while (strcmp(signature, cache->signature) && 7941 while (strcmp (signature, cache->signature) &&
7942 cache->next) 7942 cache->next)
7943 cache = cache->next; 7943 cache = cache->next;
7944 7944
7945 if (strcmp(signature, cache->signature)) 7945 if (strcmp (signature, cache->signature))
7946 { 7946 {
7947 cache->next = imagemagick_create_cache (signature); 7947 cache->next = imagemagick_create_cache (signature);
7948 DestroyString (signature); 7948 DestroyString (signature);