Skip to content

Commit 79b6ed0

Browse files
committed
Correct possible out of bounds read of a single byte.
1 parent 3ec699c commit 79b6ed0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

magick/image.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1690,7 +1690,7 @@ MagickExport size_t InterpretImageFilename(const ImageInfo *image_info,
16901690
q=(char *) p+1;
16911691
if (*q == '%')
16921692
{
1693-
p=q+1;
1693+
p++;
16941694
continue;
16951695
}
16961696
field_width=0;

0 commit comments

Comments
 (0)