Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 28, 2005, 9:07:21 PM (19 years ago)
Author:
patrick
Message:

network: valgrinded the network modules - zero error limit reached: small modification in NetworkSocket and ConnectionMonitor, nothing serious

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/subprojects/network/simple_sync.cc

    r5806 r5808  
    3131  : Synchronizeable(name)
    3232{
     33  /* define the local buffer size */
    3334  this->outLength = 10;
    3435  this->recLength = 0;
     
    3738  this->inData = new byte[this->inLength];
    3839
     40  /* init the buffer data */
    3941  for( int i = 0; i < this->outLength; i++)
    4042  {
     
    5456SimpleSync::~SimpleSync()
    5557{
     58  if( this->outData)
     59    delete[] this->outData;
     60  if( this->inData)
     61    delete[] this->inData;
    5662}
    5763
Note: See TracChangeset for help on using the changeset viewer.