diff options
author | Jana Saout <jana@saout.de> | 2013-03-01 20:10:28 +1030 |
---|---|---|
committer | Adrian Johnson <ajohnson@redneon.com> | 2013-03-01 20:10:28 +1030 |
commit | 4f00d2344c84a1017a1e7d76ccb2fa552c80a969 (patch) | |
tree | 53bc7f861efe88acac0e6ddf27df72d1c39f4807 | |
parent | 7658eced9a45f42033c2b0b45cee70f6edb6ff20 (diff) |
pdf: Fix crash
Bug 61451
-rw-r--r-- | src/cairo-pdf-surface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-pdf-surface.c b/src/cairo-pdf-surface.c index b2d51f73..f58062a0 100644 --- a/src/cairo-pdf-surface.c +++ b/src/cairo-pdf-surface.c @@ -6377,7 +6377,7 @@ _cairo_pdf_surface_emit_stencil_mask (cairo_pdf_surface_t *surface, return status; _cairo_output_stream_printf (surface->output, "q\n"); - status = _cairo_pdf_surface_paint_surface_pattern (surface, mask, NULL, TRUE); + status = _cairo_pdf_surface_paint_surface_pattern (surface, mask, extents, TRUE); if (unlikely (status)) return status; |