Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8646


Ignore:
Timestamp:
May 28, 2011, 7:35:35 PM (13 years ago)
Author:
rgrieder
Message:

Moved LANDiscovery singleton to Graphics Scope to fix the "host_ == NULL" problem.
Also fixed possible bug in d'tor.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation/src/libraries/network/LANDiscovery.cc

    r8351 r8646  
    3838namespace orxonox
    3939{
    40   ManageScopedSingleton(LANDiscovery, ScopeID::Root, true);
     40  ManageScopedSingleton(LANDiscovery, ScopeID::Graphics, true);
    4141
    4242  LANDiscovery::LANDiscovery()
     
    4949  LANDiscovery::~LANDiscovery()
    5050  {
    51     enet_host_destroy(this->host_);
     51    if (this->host_ != NULL)
     52      enet_host_destroy(this->host_);
    5253  }
    5354
Note: See TracChangeset for help on using the changeset viewer.