From 37f95f87bdfb2e0b01d649afae5fffe60bf99d3a Mon Sep 17 00:00:00 2001 From: Robin Watts Date: Fri, 11 Nov 2016 16:05:30 +0000 Subject: Make fz_buffer structure private to fitz. Move the definition of the structure contents into new fitz-imp.h file. Make all code outside of fitz access the buffer through the defined API. Add a convenience API for people that want to get buffers as null terminated C strings. --- source/xps/xps-zip.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source/xps') diff --git a/source/xps/xps-zip.c b/source/xps/xps-zip.c index ba9947c7..53ea15f9 100644 --- a/source/xps/xps-zip.c +++ b/source/xps/xps-zip.c @@ -95,10 +95,9 @@ xps_read_part(fz_context *ctx, xps_document *doc, char *partname) fz_write_buffer_byte(ctx, buf, 0); /* zero-terminate */ /* take over the data */ - data = buf->data; /* size doesn't include the added zero-terminator */ - size = buf->len - 1; - fz_free(ctx, buf); + size = fz_buffer_extract(ctx, buf, &data) - 1; + fz_drop_buffer(ctx, buf); return xps_new_part(ctx, doc, partname, data, size); } -- cgit v1.2.3