--- file_not_specified_in_diff +++ file_not_specified_in_diff @@ -, +, @@ --- gettext-0.19.4-orig/gettext-tools/gnulib-lib/libcroco/cr-statement.c +++ gettext-0.19.4-format-security/gettext-tools/gnulib-lib/libcroco/cr-statement.c @@ -2607,7 +2607,7 @@ cr_statement_dump_ruleset (CRStatement * g_return_if_fail (a_fp && a_this); str = cr_statement_ruleset_to_string (a_this, a_indent); if (str) { - fprintf (a_fp, str); + fprintf (a_fp, "%s", str); g_free (str); str = NULL; } @@ -2658,7 +2658,7 @@ cr_statement_dump_charset (CRStatement * str = cr_statement_charset_to_string (a_this, a_indent) ; if (str) { - fprintf (a_fp, str) ; + fprintf (a_fp, "%s", str) ; g_free (str) ; str = NULL ; } @@ -2685,7 +2685,7 @@ cr_statement_dump_page (CRStatement * a_ str = cr_statement_at_page_rule_to_string (a_this, a_indent) ; if (str) { - fprintf (a_fp, str); + fprintf (a_fp, "%s", str); g_free (str) ; str = NULL ; } @@ -2711,7 +2711,7 @@ cr_statement_dump_media_rule (CRStatemen str = cr_statement_media_rule_to_string (a_this, a_indent) ; if (str) { - fprintf (a_fp, str) ; + fprintf (a_fp, "%s", str) ; g_free (str) ; str = NULL ; } @@ -2737,7 +2737,7 @@ cr_statement_dump_import_rule (CRStateme str = cr_statement_import_rule_to_string (a_this, a_indent) ; if (str) { - fprintf (a_fp, str) ; + fprintf (a_fp, "%s", str) ; g_free (str) ; str = NULL ; }