Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 9, 2007, 6:01:24 PM (17 years ago)
Author:
scheusso
Message:

still problems with chatserver/client

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/network/ClientInformation.cc

    r436 r442  
    5858
    5959ClientInformation *ClientInformation::next(){
    60   return this->nexte;
     60  if(this!=0)
     61    return this->nexte;
     62  else
     63    return 0;
    6164}
    6265ClientInformation *ClientInformation::prev(){
    63   return this->preve;
     66  if(this!=0)
     67    return this->preve;
     68  else
     69    return 0;
    6470}
    6571
Note: See TracChangeset for help on using the changeset viewer.