[PATCH] type1-subset: Quell warning about uninitialized array_start
"Bryce W. Harrington" <[email protected]>
| Newsgroups | gmane.comp.lib.cairo |
|---|---|
| Message-ID | <5A5FB412583EA944A1D0228D52A9C5726392D9@sisaex02sj> |
Since we explicitly set font->subset_subrs to false, there's no way the warned code will be executed, but perhaps the compiler is confused by the goto jump. Signed-off-by: Bryce Harrington <[email protected]> --- src/cairo-type1-subset.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cairo-type1-subset.c b/src/cairo-type1-subset.c index 06d9e71..e2c799d 100644 --- a/src/cairo-type1-subset.c +++ b/src/cairo-type1-subset.c @@ -1306,6 +1306,7 @@ cairo_type1_font_subset_write_private_dict (cairo_type1_font_subset_t *font, if (subrs == NULL) { font->subset_subrs = FALSE; p = font->cleartext; + array_start = NULL; goto skip_subrs; } -- 1.7.9.5 -- Bryce Harrington Senior Open Source Developer - [email protected] Open Source Group - Samsung Research America -- cairo mailing list [email protected] http://lists.cairographics.org/mailman/listinfo/cairo