Changeset df0956ee in mainline


Ignore:
Timestamp:
2011-07-17T21:14:00Z (13 years ago)
Author:
Petr Koupy <petr.koupy@…>
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.
Message:

Merge libposix changes (free() fix).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/stdlib.c

    r64639256 rdf0956ee  
    326326void posix_free(void *ptr)
    327327{
    328         free(ptr);
     328        if (ptr) {
     329                free(ptr);
     330        }
    329331}
    330332
Note: See TracChangeset for help on using the changeset viewer.