Changeset 5209 in orxonox.OLD for trunk/src/lib/util
- Timestamp:
- Sep 20, 2005, 11:22:46 PM (19 years ago)
- Location:
- trunk/src/lib/util
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/util/list.h
r5171 r5209 365 365 inline tIterator<T>::tIterator (const tList<T>* list) 366 366 { 367 this->currentEl = list->first;367 this->currentEl = NULL; 368 368 this->tmpEl = NULL; 369 369 this->list = list; -
trunk/src/lib/util/substring.cc
r5200 r5209 70 70 } 71 71 72 l = strlen( offset); 72 73 strings[i] = new char[l + 1]; 73 l = strlen( offset);74 74 strncpy( strings[i], offset, l); 75 75 strings[i][l] = '\0';
Note: See TracChangeset
for help on using the changeset viewer.