From 0a27af8cd190315c1f13363ebd11e83d30455d48 Mon Sep 17 00:00:00 2001 From: Vaxry Date: Sun, 8 Dec 2024 18:52:34 +0000 Subject: [PATCH] crashreporter: avoid clang warning --- src/debug/CrashReporter.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/debug/CrashReporter.cpp b/src/debug/CrashReporter.cpp index 30494513051..f3478366cb0 100644 --- a/src/debug/CrashReporter.cpp +++ b/src/debug/CrashReporter.cpp @@ -122,9 +122,9 @@ void NCrashReporter::createAndSaveCrash(int sig) { if (g_pPluginSystem && g_pPluginSystem->pluginCount() > 0) { finalCrashReport += "Hyprland seems to be running with plugins. This crash might not be Hyprland's fault.\nPlugins:\n"; - size_t count = g_pPluginSystem->pluginCount(); - CPlugin* plugins[count] = {nullptr}; - g_pPluginSystem->sigGetPlugins(plugins, count); + const size_t count = g_pPluginSystem->pluginCount(); + std::vector plugins(count); + g_pPluginSystem->sigGetPlugins(plugins.data(), count); for (size_t i = 0; i < count; i++) { auto p = plugins[i];