]> git.pld-linux.org Git - packages/perl-Locale-Hebrew.git/blob - format-security.patch
perl 5.38.0 rebuild
[packages/perl-Locale-Hebrew.git] / format-security.patch
1 --- Locale-Hebrew-1.05/bidi.c~  2004-09-17 21:16:42.000000000 +0200
2 +++ Locale-Hebrew-1.05/bidi.c   2013-06-13 17:06:09.592637611 +0200
3 @@ -1234,7 +1234,7 @@
4      }
5      pszTypes[ich] = 0;
6  
7 -    fprintf(f, pszTypes);
8 +    fprintf(f, "%s", pszTypes);
9  }
10  
11  void ShowTypes(FILE* f, int * types, int cch) {
12 @@ -1245,7 +1245,7 @@
13      }
14      pszTypes[ich] = 0;
15  
16 -    fprintf(f, pszTypes);
17 +    fprintf(f, "%s", pszTypes);
18  }
19  
20  void ShowLevels(FILE* f, int * levels, int cch) {
21 @@ -1256,7 +1256,7 @@
22      }
23      pszLevel[ich] = 0;
24  
25 -    fprintf(f, pszLevel);
26 +    fprintf(f, "%s", pszLevel);
27  }
28  
29  void usage(char *s) {
This page took 0.117845 seconds and 3 git commands to generate.