Changeset df0956ee in mainline
- Timestamp:
- 2011-07-17T21:14:00Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- eccd20e6
- Parents:
- 64639256 (diff), ca1f1ec (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdlib.c
r64639256 rdf0956ee 326 326 void posix_free(void *ptr) 327 327 { 328 free(ptr); 328 if (ptr) { 329 free(ptr); 330 } 329 331 } 330 332
Note:
See TracChangeset
for help on using the changeset viewer.