diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-11-08 21:07:30 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-11-08 21:07:30 (GMT) |
commit | 37255e671fe8420985b3122991304b84c9017077 (patch) | |
tree | 601847fe45c3d106257600e3b2b7508290275692 /hl | |
parent | 79858bfde5ccdb27cc256252ebdc51c1a9f403b0 (diff) | |
parent | a9cb14740f0528060c1e6b6bc4753a33d65c265f (diff) | |
download | hdf5-37255e671fe8420985b3122991304b84c9017077.zip hdf5-37255e671fe8420985b3122991304b84c9017077.tar.gz hdf5-37255e671fe8420985b3122991304b84c9017077.tar.bz2 |
Merge pull request #1323 in HDFFV/hdf5 from ~BYRN/hdf5_adb:hdf5_1_10 to hdf5_1_10
* commit 'a9cb14740f0528060c1e6b6bc4753a33d65c265f':
TRILAB-82 fix coverity high-impact issues
TRILABS: Merge CMake changes from develop
Correct dependency of ext-libs
Diffstat (limited to 'hl')
-rw-r--r-- | hl/tools/gif2h5/decompress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hl/tools/gif2h5/decompress.c b/hl/tools/gif2h5/decompress.c index 453db12..6668c22 100644 --- a/hl/tools/gif2h5/decompress.c +++ b/hl/tools/gif2h5/decompress.c @@ -261,7 +261,7 @@ Decompress(GIFIMAGEDESC *GifImageDesc, GIFHEAD *GifHead) * chain puts its associated output code on the output queue. */ while (CurCode > DataMask) { - if (OutCount > 1024) { + if (OutCount >= 1024) { /*return error message*/ } |