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