projects
/
imagemagick
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9aef3a5
)
Added extra break.
author
Dirk Lemstra
<dirk@git.imagemagick.org>
Thu, 29 Mar 2018 20:56:00 +0000
(22:56 +0200)
committer
Dirk Lemstra
<dirk@git.imagemagick.org>
Thu, 29 Mar 2018 20:56:00 +0000
(22:56 +0200)
coders/tiff.c
patch
|
blob
|
history
diff --git
a/coders/tiff.c
b/coders/tiff.c
index dde1921908a40e8a5204b56bf839a7217e3fb861..213b700a825b1cc315415126ade277c2dcd86eb0 100644
(file)
--- a/
coders/tiff.c
+++ b/
coders/tiff.c
@@
-567,8
+567,6
@@
static MagickBooleanType DecodeLabImage(Image *image,ExceptionInfo *exception)
register ssize_t
x;
- if (status == MagickFalse)
- continue;
q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
if (q == (Quantum *) NULL)
{
@@
-592,7
+590,10
@@
static MagickBooleanType DecodeLabImage(Image *image,ExceptionInfo *exception)
q+=GetPixelChannels(image);
}
if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
- status=MagickFalse;
+ {
+ status=MagickFalse;
+ break;
+ }
}
image_view=DestroyCacheView(image_view);
return(status);