- Timestamp:
- Apr 7, 2016, 6:20:00 PM (9 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bnccore.cpp
r7718 r7856 141 141 delete _rawFile; 142 142 delete _bncComb; 143 delete _pppMain; 143 144 } 144 145 -
trunk/BNC/src/pppMain.cpp
r7850 r7856 103 103 t_pppThread* pppThread = it.next(); 104 104 pppThread->exit(); 105 if (BNC_CORE->mode() != t_bncCore::interactive) { 106 while(!pppThread->isFinished()) { 107 pppThread->wait(); 108 } 109 delete pppThread; 110 } 105 111 } 106 112 _pppThreads.clear(); -
trunk/BNC/src/pppMain.h
r7502 r7856 5 5 #include "pppOptions.h" 6 6 #include "pppThread.h" 7 #include "bnccore.h" 7 8 8 9 namespace BNC_PPP { -
trunk/BNC/src/pppRun.cpp
r7815 r7856 224 224 delete _snxtroFile; 225 225 while (!_epoData.empty()) { 226 delete _epoData.front(); 226 227 _epoData.pop_front(); 227 228 } -
trunk/BNC/src/pppThread.cpp
r6046 r7856 36 36 * Created: 29-Jul-2014 37 37 * 38 * Changes: 38 * Changes: 39 39 * 40 40 * -----------------------------------------------------------------------*/ … … 62 62 connect(this, SIGNAL(finished()), this, SLOT(deleteLater())); 63 63 64 connect(this, SIGNAL(newMessage(QByteArray,bool)), 64 connect(this, SIGNAL(newMessage(QByteArray,bool)), 65 65 BNC_CORE, SLOT(slotMessage(const QByteArray,bool))); 66 66 } … … 75 75 //////////////////////////////////////////////////////////////////////////// 76 76 void t_pppThread::run() { 77 77 78 78 try { 79 79 _pppRun = new t_pppRun(_opt);
Note:
See TracChangeset
for help on using the changeset viewer.