Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3213 in orxonox.OLD for orxonox/trunk/src/list.cc


Ignore:
Timestamp:
Dec 18, 2004, 2:54:59 AM (21 years ago)
Author:
patrick
Message:

orxonox/trunk: enhanced the CommandNode - cleaning up garbage doing the wash etc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/list.cc

    r3194 r3213  
    8181  printf("List::clear() - clearing all world objects, releasing mem\n");
    8282  this->currentEl = this->first;
     83  listElement* le = NULL;
    8384  while(this->currentEl != NULL)
    8485    {
    85       listElement* le = this->currentEl->next;
     86      le = this->currentEl->next;
    8687      delete this->currentEl->curr;
    8788      delete this->currentEl;
Note: See TracChangeset for help on using the changeset viewer.