Changeset 5209 in orxonox.OLD for trunk/src/story_entities/world.cc
- Timestamp:
- Sep 20, 2005, 11:22:46 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/story_entities/world.cc
r5206 r5209 265 265 PRINTF(2)("World is missing a proper 'name'\n"); 266 266 string = "Unknown"; 267 temp = new char[strlen(string + 2)];267 temp = new char[strlen(string)+1]; 268 268 strcpy( temp, string); 269 269 this->setName(temp); … … 271 271 else 272 272 { 273 temp = new char[strlen(string + 2)];273 temp = new char[strlen(string )+1]; 274 274 strcpy( temp, string); 275 275 this->setName(temp);
Note: See TracChangeset
for help on using the changeset viewer.