summaryrefslogtreecommitdiff
path: root/lang/perl5/patches/patch-cm
diff options
context:
space:
mode:
Diffstat (limited to 'lang/perl5/patches/patch-cm')
-rw-r--r--lang/perl5/patches/patch-cm17
1 files changed, 0 insertions, 17 deletions
diff --git a/lang/perl5/patches/patch-cm b/lang/perl5/patches/patch-cm
deleted file mode 100644
index 7c08f95f84f..00000000000
--- a/lang/perl5/patches/patch-cm
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-cm,v 1.1 2005/12/18 15:25:29 jlam Exp $
-
-Fix for Perl format string vulnerability noted in CVE-2005-3962.
-
---- sv.c.orig 2005-05-27 06:38:11.000000000 -0400
-+++ sv.c
-@@ -8520,6 +8520,10 @@ Perl_sv_vcatpvfn(pTHX_ SV *sv, const cha
- if (*q == '$') {
- ++q;
- efix = width;
-+ if (width > INT_MAX)
-+ efix = INT_MAX;
-+ else
-+ efix = width;
- } else {
- goto gotwidth;
- }