Changeset 3683 in ntrip for trunk/BNC/bncpostprocess.cpp


Ignore:
Timestamp:
Feb 12, 2012, 12:19:45 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncpostprocess.cpp

    r3681 r3683  
    100100  // ----------------
    101101  t_eph* eph = 0;
    102   while (_rnxNavFile->getNextEph(eph) == success) {
     102  while ( (eph = _rnxNavFile->getNextEph()) != 0 ) {
    103103    if (_pppClient->putNewEph(eph) != success) {
    104104      delete eph; eph = 0;
     
    109109  // -----------------
    110110  const t_rnxObsFile::t_epo* epo = 0;
    111   while ( (epo = _rnxObsFile->nextEpoch()) != 0) {
     111  while ( (epo = _rnxObsFile->nextEpoch()) != 0 ) {
    112112    for (int iObs = 0; iObs < epo->satObs.size(); iObs++) {
    113113      const t_rnxObsFile::t_satObs& satObs = epo->satObs[iObs];
Note: See TracChangeset for help on using the changeset viewer.