lshw/0004-escape-in-JSON-output.patch
Tao Liu 64cba69d31 Release B.02.20-1
Update lshw to upstream latest(9372b680418)

Resolves: RHEL-58319

Signed-off-by: Tao Liu <ltao@redhat.com>
2024-11-06 17:29:01 +13:00

28 lines
694 B
Diff

From befc2e215ab1b86af1af63fbfc26b56cd212339d Mon Sep 17 00:00:00 2001
From: Lyonel Vincent <lyonel@ezix.org>
Date: Wed, 12 Jun 2024 13:50:01 +0200
Subject: [PATCH 4/5] escape '\' in JSON output
some DMI/SMBIOS contain '\' at the end of their strings (#807)
---
src/core/osutils.cc | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/core/osutils.cc b/src/core/osutils.cc
index cfa09ca..a3d8c12 100644
--- a/src/core/osutils.cc
+++ b/src/core/osutils.cc
@@ -526,6 +526,9 @@ string escapeJSON(const string & s)
case '"':
result += "\\\"";
break;
+ case '\\':
+ result += "\\\\";
+ break;
default:
result += s[i];
}
--
2.40.1