summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2021-01-04 02:25:30 +0100
committerLars Wendler <polynomial-c@gentoo.org>2021-01-04 02:25:36 +0100
commit1f20db400637e0b9b5c0a147ccfdef132df226b4 (patch)
tree60b1a72a2c6c5029a3147198ef0e16c2533c3cb4 /x11-apps/radeon-profile/files
parentx11-apps/radeon-profile: Removed old (diff)
downloadgentoo-1f20db400637e0b9b5c0a147ccfdef132df226b4.tar.gz
gentoo-1f20db400637e0b9b5c0a147ccfdef132df226b4.tar.bz2
gentoo-1f20db400637e0b9b5c0a147ccfdef132df226b4.zip
x11-apps/radeon-profile: Revbump to fix segfault
Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'x11-apps/radeon-profile/files')
-rw-r--r--x11-apps/radeon-profile/files/radeon-profile-20200824-segfault.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/x11-apps/radeon-profile/files/radeon-profile-20200824-segfault.patch b/x11-apps/radeon-profile/files/radeon-profile-20200824-segfault.patch
new file mode 100644
index 000000000000..141dd46d8f79
--- /dev/null
+++ b/x11-apps/radeon-profile/files/radeon-profile-20200824-segfault.patch
@@ -0,0 +1,33 @@
+From a98da7fd620a9b102a74affe16c0c0daccb97fc4 Mon Sep 17 00:00:00 2001
+From: Haakon Drews <fawz@negentropy.io>
+Date: Mon, 4 Jan 2021 02:21:17 +0100
+Subject: [PATCH] Fix segfault when running as regular user
+
+Bug: https://github.com/marazmista/radeon-profile/issues/244
+Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
+---
+ radeon-profile/gpu.cpp | 8 +++++++-
+ 1 file changed, 7 insertions(+), 1 deletion(-)
+
+diff --git a/radeon-profile/gpu.cpp b/radeon-profile/gpu.cpp
+index ccd99d3..f5e32a3 100644
+--- a/radeon-profile/gpu.cpp
++++ b/radeon-profile/gpu.cpp
+@@ -69,7 +69,13 @@ void gpu::detectCards() {
+
+ int pciIdx = ueventContents.indexOf(QRegExp("PCI_SLOT_NAME.+"));
+ if (pciIdx != -1)
+- gsi.name = globalStuff::grabSystemInfo("lspci -s " + ueventContents[pciIdx].split('=')[1])[0].split(':')[2].trimmed();
++ {
++ auto input = globalStuff::grabSystemInfo("lspci -s " + ueventContents[pciIdx].split('=')[1]);
++ if(input.size() < 3)
++ gsi.name = "UNKNOWN";
++ else
++ gsi.name = input[0].split(':')[2].trimmed();
++ }
+
+ gpuList.append(gsi);
+
+--
+2.30.0
+