laforge
/
openbts-osmo
Archived
1
0
Fork 0

Transceiver52M: Do not delete 'trx' on exit.

This should make it slightly less frequent to segfault on exit.
Actually we should shutdown all our threads correctly, but that's a lot of work.

(cherry picked from commit 7cd65d3e5a717e0c224477cacfe932cfd7a45b8f)
This commit is contained in:
Alexander Chemeris 2010-11-26 01:03:54 +03:00
parent 6423e707df
commit 3fa2aa19cb
1 changed files with 1 additions and 1 deletions

View File

@ -88,6 +88,6 @@ int main(int argc, char *argv[])
cout << "Shutting down transceiver..." << endl; cout << "Shutting down transceiver..." << endl;
// trx->stop(); // trx->stop();
delete trx; // delete trx;
// delete radio; // delete radio;
} }