27 lines
664 B
Diff
27 lines
664 B
Diff
From 527e482dc70b035d0df4f8c77a00d81f8d775c74 Mon Sep 17 00:00:00 2001
|
|
From: Dan Kogai <dankogai+github@gmail.com>
|
|
Date: Mon, 9 Aug 2021 23:19:25 +0900
|
|
Subject: [PATCH] version 3.12 to address CVE-2021-36770
|
|
---
|
|
Encode.pm | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/Encode.pm b/Encode.pm
|
|
index de06ba1..4ec7d86 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.33.0
|
|
|