Changeset 625 in ntrip


Ignore:
Timestamp:
Dec 16, 2007, 5:24:59 PM (16 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM/GPSDecoder.h

    r624 r625  
    2626#define GPSDECODER_H
    2727
     28#include <iostream>
    2829#include <QPointer>
    2930#include <QList>
     
    7677  }
    7778
     79  ~t_obs() {std::cout << "delete " << _o.StatID << " " << _status << std::endl;}
     80
    7881  t_obsInternal _o;
    7982  t_obs_status  _status;
     
    9093    while (it.hasNext()) {
    9194      p_obs obs = it.next();
    92       if (obs->_status == t_obs::initial) {
     95      if (!obs.isNull() && obs->_status == t_obs::initial) {
    9396        delete obs;
    9497      }
Note: See TracChangeset for help on using the changeset viewer.