| 157 |
|
the_node->the_data.mbrs.memberList[i] = atoi( foo ); |
| 158 |
|
} |
| 159 |
|
|
| 160 |
+ |
free(list_str); |
| 161 |
|
return the_node; |
| 162 |
|
} |
| 163 |
|
|
| 187 |
|
foo = strtok(list_str, " ,;\t"); |
| 188 |
|
the_node->the_data.cnstr.constraint_val = atof( foo ); |
| 189 |
|
|
| 190 |
+ |
free(list_str); |
| 191 |
|
return the_node; |
| 192 |
|
} |
| 193 |
|
|
| 223 |
|
foo = strtok(NULL, " ,;\t"); |
| 224 |
|
the_node->the_data.ort.psi = atof( foo ); |
| 225 |
|
|
| 226 |
+ |
free(list_str); |
| 227 |
|
return the_node; |
| 228 |
|
} |
| 229 |
|
|
| 259 |
|
foo = strtok(NULL, " ,;\t"); |
| 260 |
|
the_node->the_data.pos.z = atof( foo ); |
| 261 |
|
|
| 262 |
< |
|
| 262 |
> |
free(list_str); |
| 263 |
|
return the_node; |
| 264 |
|
} |
| 265 |
|
|