Changeset 2448 for trunk/gsdl/src


Ignore:
Timestamp:
2001-05-18T15:20:10+12:00 (23 years ago)
Author:
kjm18
Message:

fixed unsigned long overflow error in Condense Invf function
bytesOutput cast to mg_ullong.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/mgpp/text/ivf.pass2.cpp

    r2443 r2448  
    2424/*
    2525   $Log$
     26   Revision 1.3  2001/05/18 03:20:10  kjm18
     27   fixed unsigned long overflow error in Condense Invf function
     28   bytesOutput cast to mg_ullong.
     29
    2630   Revision 1.2  2001/05/17 04:52:38  jrm21
    2731   added some #defines for proper portability.
     
    10451049
    10461050    stateRec.here -= stateRec.start;
    1047     stateRec.start = bytesOutput * 8 + oldEntryStartOver;
     1051    stateRec.start = (mg_ullong)bytesOutput * 8 + oldEntryStartOver;
    10481052    stateRec.here += stateRec.start;
    10491053    while (oldEntryStart < oldEntryEnd) {
Note: See TracChangeset for help on using the changeset viewer.