return -ENOMEM;
iovw->iovec[iovw->count++] = IOVEC_MAKE(data, len);
- return 0;
+ return 1;
}
int iovw_consume(struct iovec_wrapper *iovw, void *data, size_t len) {
int r;
r = iovw_put(iovw, data, len);
- if (r < 0)
+ if (r <= 0)
free(data);
return r;
ASSERT_EQ(memcmp(iovw.iovec[0].iov_base, "one", 3), 0);
/* Insert with a NUL */
- ASSERT_OK_ZERO(iovw_append(&iovw, buf, 4));
+ ASSERT_OK(iovw_append(&iovw, buf, 4));
ASSERT_EQ(iovw.count, 2U);
ASSERT_EQ(iovw.iovec[1].iov_len, 4U);
ASSERT_EQ(memcmp(iovw.iovec[1].iov_base, "one\0", 4), 0);
/* iovw_consume moves ownership in place, no copy */
ASSERT_PTR_EQ(iovw.iovec[0].iov_base, p);
- /* Zero-length: iovw_put returns 0 without adding anything, and does not free the payload.
- * Confirm by strdup'ing something and explicitly freeing it afterwards. */
- _cleanup_free_ char *q = strdup("");
- ASSERT_NOT_NULL(q);
+ /* Zero-length: iovw_put returns 0 without adding anything. Even in that case, iovw_consume() frees
+ * the payload. Confirm by strdup'ing something to verify that when running with sanitizer/valgrind. */
+ char *q = ASSERT_NOT_NULL(strdup(""));
ASSERT_OK_ZERO(iovw_consume(&iovw, q, 0));
ASSERT_EQ(iovw.count, 1U);
}