Changeset 5211 in orxonox.OLD for trunk/src/util/loading
- Timestamp:
- Sep 21, 2005, 2:21:41 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/util/loading/load_param.cc
r5141 r5211 133 133 this->types = NULL; 134 134 this->description = NULL; 135 this->defaultValues = NULL; 135 136 this->paramName = new char[strlen(paramName)+1]; 136 137 strcpy(this->paramName, paramName); 137 this->defaultValues = NULL;138 138 } 139 139 … … 158 158 } 159 159 160 delete []this->types;161 delete []this->defaultValues;162 delete []this->paramName;163 delete []this->description;160 delete[] this->types; 161 delete[] this->defaultValues; 162 delete[] this->paramName; 163 delete[] this->description; 164 164 } 165 165
Note: See TracChangeset
for help on using the changeset viewer.