unsigned int
tag;
- tag=(ReadBlobLSBShort(image) << 16) | ReadBlobLSBShort(image);
+ tag=((unsigned int) ReadBlobLSBShort(image) << 16) |
+ ReadBlobLSBShort(image);
length=(size_t) ReadBlobLSBLong(image);
if (tag == 0xFFFEE0DD)
break; /* sequence delimiter tag */
if (c == EOF)
break;
}
- tag=(ReadBlobLSBShort(image) << 16) | ReadBlobLSBShort(image);
+ tag=((unsigned int) ReadBlobLSBShort(image) << 16) |
+ ReadBlobLSBShort(image);
(void) tag;
length=(size_t) ReadBlobLSBLong(image);
if (length > GetBlobSize(image))
if (c == EOF)
break;
}
- tag=(ReadBlobLSBShort(image) << 16) | ReadBlobLSBShort(image);
+ tag=((unsigned int) ReadBlobLSBShort(image) << 16) |
+ ReadBlobLSBShort(image);
stream_info->remaining=(size_t) ReadBlobLSBLong(image);
if ((tag != 0xFFFEE000) || (stream_info->remaining <= 64) ||
(EOFBlob(image) != MagickFalse))