Changeset 107 for trunk/src/sh_tiger0.c


Ignore:
Timestamp:
Jun 16, 2007, 3:29:39 PM (17 years ago)
Author:
rainer
Message:

Fix incorrect handling of files with zero size in GrowingLogFiles.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/sh_tiger0.c

    r105 r107  
    236236          }
    237237
    238         if (Length > 0)
     238        if (Length != TIGER_NOLIM)
    239239          {
    240240            bcount += count;
     
    879879        }
    880880
    881       if (Length > 0)
     881      if (Length != TIGER_NOLIM)
    882882        {
    883883          bcount += n;
     
    14021402        }
    14031403
    1404       if (Length > 0)
     1404      if (Length != TIGER_NOLIM)
    14051405        {
    14061406          bcount += n;
Note: See TracChangeset for help on using the changeset viewer.