Changeset 0402bda5 in mainline
- Timestamp:
- 2010-09-26T13:04:53Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3c213f6
- Parents:
- edba2b6f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/adt/measured_strings.c
redba2b6f r0402bda5 161 161 return ERROR_CODE; 162 162 } 163 163 164 *data = malloc(lengths[count]); 164 165 if (!(*data)) { 166 free(lengths); 165 167 return ENOMEM; 166 168 } … … 330 332 *data = malloc(lengths[count]); 331 333 if (!(*data)) { 334 free(lengths); 332 335 return ENOMEM; 333 336 }
Note:
See TracChangeset
for help on using the changeset viewer.