Changeset 231 in ntrip for trunk/BNC/RTCM
- Timestamp:
- Oct 7, 2006, 2:30:21 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM/RTCM2.cpp
r227 r231 501 501 cerr << "Error: can't handle >32 bits in RTCM2packet::getUnsignedBits" 502 502 << endl; 503 exit(-1); 503 /// exit(-1); 504 return 0; 504 505 }; 505 506 506 507 if ( 24*DW.size() < start+n-1 ) { 507 508 cerr << "Error: Packet too short in RTCM2packet::getUnsignedBits" << endl; 508 exit(-1); 509 //// exit(-1); 510 return 0; 509 511 } 510 512 … … 553 555 cerr << "Error: can't handle >32 bits in RTCM2packet::getBits" 554 556 << endl; 555 exit(-1); 557 //// exit(-1); 558 return 0; 556 559 }; 557 560 558 561 if ( 24*DW.size() < start+n-1 ) { 559 562 cerr << "Error: Packet too short in RTCM2packet::getBits" << endl; 560 exit(-1);563 return 0; 561 564 } 562 565
Note:
See TracChangeset
for help on using the changeset viewer.