Changes in uspace/lib/c/generic/vbd.c [fafb8e5:27c0e5b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/vbd.c
rfafb8e5 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.