Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 13, 2006, 11:21:21 PM (19 years ago)
Author:
patrick
Message:

segfault fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/proxy/src/lib/network/network_stream.cc

    r9280 r9281  
    105105  this->serverSocket = NULL;
    106106  this->networkGameManager = NULL;
    107   this->networkMonitor = new NetworkMonitor(this);
     107  this->networkMonitor = NULL;
    108108
    109109  this->myHostId = 0;
     
    222222void NetworkStream::processData()
    223223{
     224  // create the network monitor after all the init work and before there is any connection handlings
     225  if( this->networkMonitor == NULL)
     226    this->networkMonitor = new NetworkMonitor(this);
     227
     228
    224229  int tick = SDL_GetTicks();
    225230
Note: See TracChangeset for help on using the changeset viewer.