summaryrefslogtreecommitdiff
path: root/source/xps/xps-image.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/xps/xps-image.c')
-rw-r--r--source/xps/xps-image.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/source/xps/xps-image.c b/source/xps/xps-image.c
index 83f7ac0d..aa495566 100644
--- a/source/xps/xps-image.c
+++ b/source/xps/xps-image.c
@@ -4,10 +4,7 @@
static fz_image *
xps_load_image(fz_context *ctx, xps_document *doc, xps_part *part)
{
- /* Ownership of data always passes in here */
- unsigned char *data = part->data;
- part->data = NULL;
- return fz_new_image_from_data(ctx, data, part->size);
+ return fz_new_image_from_buffer(ctx, part->data);
}
/* FIXME: area unused! */