Changeset 2647 in ntrip


Ignore:
Timestamp:
Nov 7, 2010, 4:19:39 PM (13 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnccaster.cpp

    r2646 r2647  
    129129////////////////////////////////////////////////////////////////////////////
    130130bncCaster::~bncCaster() {
     131
     132  QMutexLocker locker(&_mutex);
     133
    131134  QListIterator<bncGetThread*> it(_threads);
    132135  while(it.hasNext()){
  • trunk/BNC/bncgetthread.cpp

    r2527 r2647  
    486486        bool firstObs = (obs == _decoder->_obsList.first());
    487487        obs->_status = t_obs::posted;
    488         emit newObs(_staID, firstObs, obs);
     488         if (!_isToBeDeleted) {
     489           emit newObs(_staID, firstObs, obs);
     490         }
    489491      }
    490492      _decoder->_obsList.clear();
Note: See TracChangeset for help on using the changeset viewer.