summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rw-r--r--contrib/gdevgdi.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/gdevgdi.c b/contrib/gdevgdi.c
index 38181a91b..4fd3f1a07 100644
--- a/contrib/gdevgdi.c
+++ b/contrib/gdevgdi.c
@@ -548,11 +548,14 @@ unsigned int FrameTiff_Comp(unsigned char *lpSrcBuf, unsigned char *lpTgtBuf, un
if(ubFirst == ubSecond) /* case of data match */
{
+ #if 0
+ /* This code causes coverity problems, and has no affect. */
usEndCnt = usCount;
if (usCount > 16384)
{
usEndCnt = 16384;
}
+ #endif
usEndCnt = usCount - 2;
while (usEndCnt--)
{
@@ -589,11 +592,14 @@ unsigned int FrameTiff_Comp(unsigned char *lpSrcBuf, unsigned char *lpTgtBuf, un
ubMisCnt = 0;
if (usCount > 2)
{
+ #if 0
+ /* This code causes coverity problems, and has no affect. */
usEndCnt = usCount;
if (usCount > 16384)
{
usEndCnt = 16384;
}
+ #endif
usEndCnt = usCount - 2;
/* usEndCnt = usCount - 2; original*/
/* 19990824 by LSM : for end file while (usEndCnt--)*/