Changeset ec39720 in mainline
- Timestamp:
- 2018-06-09T10:39:01Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 899342e, ed18e14
- Parents:
- 931afbc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs_ops.c
r931afbc rec39720 597 597 598 598 ht_link_t *hlp = hash_table_find(&nodes, &key); 599 600 599 if (!hlp) 601 600 return ENOENT; … … 609 608 610 609 void *newdata = realloc(nodep->data, size); 611 if (!newdata )610 if (!newdata && size) 612 611 return ENOMEM; 613 612
Note:
See TracChangeset
for help on using the changeset viewer.