Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 512398
Collapse All | Expand All

(-)file_not_specified_in_diff (-6 / +6 lines)
Line  Link Here
0
-- gettext-0.19.4-orig/gettext-tools/gnulib-lib/libcroco/cr-statement.c
0
++ gettext-0.19.4-format-security/gettext-tools/gnulib-lib/libcroco/cr-statement.c
Lines 2607-2613 cr_statement_dump_ruleset (CRStatement * Link Here
2607
        g_return_if_fail (a_fp && a_this);
2607
        g_return_if_fail (a_fp && a_this);
2608
        str = cr_statement_ruleset_to_string (a_this, a_indent);
2608
        str = cr_statement_ruleset_to_string (a_this, a_indent);
2609
        if (str) {
2609
        if (str) {
2610
                fprintf (a_fp, str);
2610
                fprintf (a_fp, "%s", str);
2611
                g_free (str);
2611
                g_free (str);
2612
                str = NULL;
2612
                str = NULL;
2613
        }
2613
        }
Lines 2658-2664 cr_statement_dump_charset (CRStatement * Link Here
2658
        str = cr_statement_charset_to_string (a_this,
2658
        str = cr_statement_charset_to_string (a_this,
2659
                                              a_indent) ;
2659
                                              a_indent) ;
2660
        if (str) {
2660
        if (str) {
2661
                fprintf (a_fp, str) ;
2661
                fprintf (a_fp, "%s", str) ;
2662
                g_free (str) ;
2662
                g_free (str) ;
2663
                str = NULL ;
2663
                str = NULL ;
2664
        }
2664
        }
Lines 2685-2691 cr_statement_dump_page (CRStatement * a_ Link Here
2685
2685
2686
        str = cr_statement_at_page_rule_to_string (a_this, a_indent) ;
2686
        str = cr_statement_at_page_rule_to_string (a_this, a_indent) ;
2687
        if (str) {
2687
        if (str) {
2688
                fprintf (a_fp, str);
2688
                fprintf (a_fp, "%s", str);
2689
                g_free (str) ;
2689
                g_free (str) ;
2690
                str = NULL ; 
2690
                str = NULL ; 
2691
        }
2691
        }
Lines 2711-2717 cr_statement_dump_media_rule (CRStatemen Link Here
2711
2711
2712
        str = cr_statement_media_rule_to_string (a_this, a_indent) ;
2712
        str = cr_statement_media_rule_to_string (a_this, a_indent) ;
2713
        if (str) {
2713
        if (str) {
2714
                fprintf (a_fp, str) ;
2714
                fprintf (a_fp, "%s", str) ;
2715
                g_free (str) ;
2715
                g_free (str) ;
2716
                str = NULL ;
2716
                str = NULL ;
2717
        }
2717
        }
Lines 2737-2743 cr_statement_dump_import_rule (CRStateme Link Here
2737
2737
2738
        str = cr_statement_import_rule_to_string (a_this, a_indent) ;
2738
        str = cr_statement_import_rule_to_string (a_this, a_indent) ;
2739
        if (str) {
2739
        if (str) {
2740
                fprintf (a_fp, str) ;
2740
                fprintf (a_fp, "%s", str) ;
2741
                g_free (str) ;
2741
                g_free (str) ;
2742
                str = NULL ;
2742
                str = NULL ;
2743
        }
2743
        }

Return to bug 512398