Changeset 245 in ntrip for trunk/BNC/RTCM


Ignore:
Timestamp:
Oct 13, 2006, 9:53:30 AM (18 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

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

    r242 r245  
    504504    cerr << "Error: can't handle >32 bits in RTCM2packet::getUnsignedBits"
    505505         << endl;
    506     exit(-1);
     506    return 0; // exit(-1);
    507507  };
    508508 
    509509  if ( 24*DW.size() < start+n-1 ) {
    510510    cerr << "Error: Packet too short in RTCM2packet::getUnsignedBits" << endl;
    511     exit(-1);
     511    return 0; // exit(-1);
    512512  }
    513513
     
    556556    cerr << "Error: can't handle >32 bits in RTCM2packet::getBits"
    557557         << endl;
    558     exit(-1);
     558    return 0; // exit(-1);
    559559  };
    560560 
    561561  if ( 24*DW.size() < start+n-1 ) {
    562562    cerr << "Error: Packet too short in RTCM2packet::getBits" << endl;
    563     exit(-1);
     563    return 0; // exit(-1);
    564564  }
    565565
Note: See TracChangeset for help on using the changeset viewer.