Changes in uspace/lib/c/generic/vbd.c [27c0e5b:fafb8e5] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/vbd.c
r27c0e5b rfafb8e5 231 231 232 232 alloc_size = act_size; 233 service_id_t *tmp = realloc(ids, alloc_size); 234 if (tmp == NULL) { 235 free(ids); 233 ids = realloc(ids, alloc_size); 234 if (ids == NULL) 236 235 return ENOMEM; 237 }238 ids = tmp;239 236 } 240 237
Note:
See TracChangeset
for help on using the changeset viewer.