jcs
/amend
/amendments
/111
bile: Don't bother zeroing in bile_read_alloc
jcs made amendment 111 about 1 year ago
--- bile.c Sun Feb 5 09:37:19 2023
+++ bile.c Tue Mar 28 16:19:59 2023
@@ -593,7 +593,7 @@ bile_read_alloc(struct bile *bile, const OSType type,
snprintf(note, sizeof(note), "bile_read_alloc %s %ld",
OSTypeToString(type), id);
- *data = xmalloczero(o->size, note);
+ *data = xmalloc(o->size, note);
ret = bile_read_object(bile, o, *data, o->size);
return ret;