File: SvPV_STRLEN.patch

package info (click to toggle)
liblocale-hebrew-perl 1.05-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 332 kB
  • sloc: perl: 1,286; ansic: 661; makefile: 3
file content (19 lines) | stat: -rw-r--r-- 479 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: SvPV() needs a STRLEN for the len parameter
Origin: vendor
Bug: https://rt.cpan.org/Public/Bug/Display.html?id=143880
Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=143880
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1040657
Author: gregor herrmann <gregoa@debian.org>
Last-Update: 2023-07-09

--- a/Hebrew.xs
+++ b/Hebrew.xs
@@ -17,7 +17,7 @@
 _hebrewflip(s)
 SV * s
 CODE:
-    int l;
+    STRLEN l;
     char *src, *dst;
     SV *r;