diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2016-07-08 14:24:54 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2016-07-08 17:21:24 +0200 |
commit | 2be507bfb199e8c80e4b2ee1cb2c867b57fc1f6e (patch) | |
tree | 04544d816acc62b02317b9b58c91a7100330d5b0 /source/pdf/pdf-graft.c | |
parent | 2791551275e458066b7f1c975d6c8d9e0435051c (diff) | |
download | mupdf-2be507bfb199e8c80e4b2ee1cb2c867b57fc1f6e.tar.xz |
Use fz_keep_imp and fz_drop_imp for all reference counting.
Diffstat (limited to 'source/pdf/pdf-graft.c')
-rw-r--r-- | source/pdf/pdf-graft.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source/pdf/pdf-graft.c b/source/pdf/pdf-graft.c index d7cb8b42..64072eb0 100644 --- a/source/pdf/pdf-graft.c +++ b/source/pdf/pdf-graft.c @@ -33,15 +33,13 @@ pdf_new_graft_map(fz_context *ctx, pdf_document *src) pdf_graft_map * fz_keep_graft_map(fz_context *ctx, pdf_graft_map *map) { - if (map) - ++map->refs; - return map; + return fz_keep_imp(ctx, map, &map->refs); } void pdf_drop_graft_map(fz_context *ctx, pdf_graft_map *map) { - if (map && --map->refs == 0) + if (fz_drop_imp(ctx, map, &map->refs)) { fz_drop_document(ctx, (fz_document*)map->src); fz_free(ctx, map->dst_from_src); |