iovw_free_contents(iovw, true);
}
+static inline void iovw_done(struct iovec_wrapper *iovw) {
+ iovw_free_contents(iovw, false);
+}
+
int iovw_put(struct iovec_wrapper *iovw, void *data, size_t len);
static inline int iovw_consume(struct iovec_wrapper *iovw, void *data, size_t len) {
/* Move data into iovw or free on error */
free(imp->name);
free(imp->buf);
- iovw_free_contents(&imp->iovw, false);
+ iovw_done(&imp->iovw);
}
static char* realloc_buffer(JournalImporter *imp, size_t size) {
/* This function drops processed data that along with the iovw that points at it */
- iovw_free_contents(&imp->iovw, false);
+ iovw_done(&imp->iovw);
/* possibly reset buffer position */
remain = imp->filled - imp->offset;