82a19c4144
Fix HTTP response splitting in CGI. Fix ReDos vulnerability in URI. Fix ReDos vulnerability in Time. Make RDoc soft dependency in IRB. Rebased from latest Ruby 3.1 present in Fedora 37, commit: 4048f893da1d56ed65667e7f15405224653c83e2 Resolves: RHEL-5584 Resolves: CVE-2021-33621 Resolves: CVE-2023-28755 Resolves: CVE-2023-36617 Resolves: CVE-2023-28756 Resolves: RHEL-5615
25 lines
775 B
Diff
25 lines
775 B
Diff
From 54c8df06ff9e161012f89d19a4e3aa2e0e37e1b0 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
|
|
Date: Tue, 23 Aug 2022 10:41:28 +0200
|
|
Subject: [PATCH] Drop hard dependency on RDoc.
|
|
|
|
This has been introduced in 026700499dfd640b2072d7bf0370247a98d5ac40,
|
|
but it seems that this is just be mistake, otherwise the later handling
|
|
of `LoadError` would not be needed.
|
|
---
|
|
lib/irb/input-method.rb | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/lib/irb/input-method.rb b/lib/irb/input-method.rb
|
|
index fd68239e..a8227caa 100644
|
|
--- a/lib/irb/input-method.rb
|
|
+++ b/lib/irb/input-method.rb
|
|
@@ -14,7 +14,6 @@
|
|
require_relative 'completion'
|
|
require 'io/console'
|
|
require 'reline'
|
|
-require 'rdoc'
|
|
|
|
module IRB
|
|
STDIN_FILE_NAME = "(line)" # :nodoc:
|