Changeset a25b496 in mainline
- Timestamp:
- 2020-04-19T15:53:52Z (5 years ago)
- Parents:
- ec506d49
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/loc.c
rec506d49 ra25b496 819 819 820 820 alloc_size = act_size; 821 ids = realloc(ids, alloc_size); 822 if (ids == NULL) 821 service_id_t *tmp = realloc(ids, alloc_size); 822 if (tmp == NULL) { 823 free(ids); 823 824 return ENOMEM; 825 } 826 ids = tmp; 824 827 } 825 828
Note:
See TracChangeset
for help on using the changeset viewer.