Changeset 27c0e5b in mainline
- Timestamp:
- 2020-04-28T17:18:05Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f7f2c7f
- Parents:
- 14a014f
- git-author:
- Manuele Conti <manuele.conti@…> (2020-04-28 12:18:24)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2020-04-28 17:18:05)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/vbd.c
r14a014f r27c0e5b 231 231 232 232 alloc_size = act_size; 233 ids = realloc(ids, alloc_size); 234 if (ids == NULL) 233 service_id_t *tmp = realloc(ids, alloc_size); 234 if (tmp == NULL) { 235 free(ids); 235 236 return ENOMEM; 237 } 238 ids = tmp; 236 239 } 237 240
Note:
See TracChangeset
for help on using the changeset viewer.