fixed several warnings from Xcode 4 LLVM compiler; fixed bug #920
This commit is contained in:
2
3rdparty/libjasper/jpc_t2dec.c
vendored
2
3rdparty/libjasper/jpc_t2dec.c
vendored
@@ -574,7 +574,7 @@ long jpc_dec_lookahead(jas_stream_t *in)
|
||||
jas_stream_ungetc(in, x >> 8) == EOF) {
|
||||
return -1;
|
||||
}
|
||||
if (x >= JPC_MS_INMIN && x <= JPC_MS_INMAX) {
|
||||
if (x >= JPC_MS_INMIN /*&& x <= JPC_MS_INMAX*/) {
|
||||
return x;
|
||||
}
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user