Changeset 231 in ntrip for trunk/BNC/RTCM


Ignore:
Timestamp:
Oct 7, 2006, 2:30:21 PM (18 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM/RTCM2.cpp

    r227 r231  
    501501    cerr << "Error: can't handle >32 bits in RTCM2packet::getUnsignedBits"
    502502         << endl;
    503     exit(-1);
     503    ///    exit(-1);
     504    return 0;
    504505  };
    505506 
    506507  if ( 24*DW.size() < start+n-1 ) {
    507508    cerr << "Error: Packet too short in RTCM2packet::getUnsignedBits" << endl;
    508     exit(-1);
     509    ////    exit(-1);
     510    return 0;
    509511  }
    510512
     
    553555    cerr << "Error: can't handle >32 bits in RTCM2packet::getBits"
    554556         << endl;
    555     exit(-1);
     557    ////    exit(-1);
     558    return 0;
    556559  };
    557560 
    558561  if ( 24*DW.size() < start+n-1 ) {
    559562    cerr << "Error: Packet too short in RTCM2packet::getBits" << endl;
    560     exit(-1);
     563    return 0;
    561564  }
    562565
Note: See TracChangeset for help on using the changeset viewer.