Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libencode-perl
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pkg
libencode-perl
Commits
9b51ba33
Commit
9b51ba33
authored
3 years ago
by
Apertis CI robot
Browse files
Options
Downloads
Plain Diff
Merge updates from debian/bullseye-security
parents
3bebfa6e
306d4d14
No related branches found
No related tags found
1 merge request
!1
Update from debian/bullseye-security for apertis/v2022dev3
Pipeline
#283319
passed
3 years ago
Stage: build-env
Stage: build
Stage: license scan
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
debian/changelog
+12
-0
12 additions, 0 deletions
debian/changelog
debian/patches/0001-mitigate-INC-pollution-when-loading-ConfigLocal.patch
+27
-0
27 additions, 0 deletions
...001-mitigate-INC-pollution-when-loading-ConfigLocal.patch
debian/patches/series
+1
-0
1 addition, 0 deletions
debian/patches/series
with
40 additions
and
0 deletions
debian/changelog
+
12
−
0
View file @
9b51ba33
libencode-perl (3.08-1+deb11u1+apertis0) apertis; urgency=medium
* Sync from debian/bullseye-security.
-- Apertis CI <devel@lists.apertis.org> Wed, 11 Aug 2021 16:18:15 +0000
libencode-perl (3.08-1+deb11u1) bullseye-security; urgency=high
* [SECURITY] CVE-2021-36770: Encode loading code from working directory
-- Niko Tyni <ntyni@debian.org> Fri, 06 Aug 2021 21:49:32 +0300
libencode-perl (3.08-1apertis0) apertis; urgency=medium
* Import from Debian bullseye.
...
...
This diff is collapsed.
Click to expand it.
debian/patches/0001-mitigate-INC-pollution-when-loading-ConfigLocal.patch
0 → 100644
+
27
−
0
View file @
9b51ba33
From 200652dec217550188bf7984021552bd4114fe34 Mon Sep 17 00:00:00 2001
From: Ricardo Signes <rjbs@semiotic.systems>
Date: Sat, 17 Jul 2021 14:46:10 -0400
Subject: [PATCH] mitigate @INC pollution when loading ConfigLocal
---
Encode.pm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Encode.pm b/Encode.pm
index d3eb3c1..9fb5fc7 100644
--- a/Encode.pm
+++ b/Encode.pm
@@ -65,8 +65,8 @@
require Encode::Config;
eval {
local $SIG{__DIE__};
local $SIG{__WARN__};
- local @INC = @INC || ();
- pop @INC if $INC[-1] eq '.';
+ local @INC = @INC;
+ pop @INC if @INC && $INC[-1] eq '.';
require Encode::ConfigLocal;
};
--
2.29.2
This diff is collapsed.
Click to expand it.
debian/patches/series
0 → 100644
+
1
−
0
View file @
9b51ba33
0001-mitigate-INC-pollution-when-loading-ConfigLocal.patch
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment