]> git.pld-linux.org Git - packages/perl-Term-Gnuplot.git/blob - format-security.patch
- fix format string error
[packages/perl-Term-Gnuplot.git] / format-security.patch
1 --- Term-Gnuplot-0.90380905/gnuterm/term/post.trm~      2002-09-04 00:41:04.000000000 +0200
2 +++ Term-Gnuplot-0.90380905/gnuterm/term/post.trm       2013-06-13 17:23:49.684105533 +0200
3 @@ -1562,7 +1562,7 @@
4      if (!ps_common_portrait) {
5         fprintf(gpoutfile,"90 rotate\n0 %d translate\n", (int)(-PS_YMAX));
6      }
7 -    fprintf(gpoutfile, psg1);
8 +    fprintf(gpoutfile, "%s", psg1);
9      if (ps_common_uses_fonts)
10         fprintf(gpoutfile, "(%s) findfont %d scalefont setfont\n",
11                 ps_font, (t->v_char) );
This page took 0.094815 seconds and 3 git commands to generate.