From 09a016ee7c5c81580b27db3bd193b38cb3bd4f0e Mon Sep 17 00:00:00 2001 From: Robin Watts Date: Fri, 16 Dec 2011 16:26:48 +0000 Subject: Add fz_malloc_struct, and make code use it. The new fz_malloc_struct(A,B) macro allocates sizeof(B) bytes using fz_malloc, and then passes the resultant pointer to Memento_label to label it with "B". This costs nothing in non-memento builds, but gives much nicer listings of leaked blocks when memento is enabled. --- pdf/pdf_outline.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pdf/pdf_outline.c') diff --git a/pdf/pdf_outline.c b/pdf/pdf_outline.c index 9353d892..a194178c 100644 --- a/pdf/pdf_outline.c +++ b/pdf/pdf_outline.c @@ -12,7 +12,7 @@ pdf_load_outline_imp(pdf_xref *xref, fz_obj *dict) if (fz_is_null(dict)) return NULL; - node = fz_malloc(ctx, sizeof(fz_outline)); + node = fz_malloc_struct(ctx, fz_outline); node->ctx = ctx; node->title = NULL; node->page = 0; -- cgit v1.2.3