diff options
author | vaxerski <[email protected]> | 2023-09-23 13:26:35 +0100 |
---|---|---|
committer | vaxerski <[email protected]> | 2023-09-23 13:26:35 +0100 |
commit | 9c00381dfcdebc1b392f0e05552775adc069f163 (patch) | |
tree | e00be17d19b8a13cc0c3ec1659901f53689092b7 | |
parent | fb80cbe415835a7e0c64e2038d0fc56e8aba0ab4 (diff) | |
download | Hyprland-9c00381dfcdebc1b392f0e05552775adc069f163.tar.gz Hyprland-9c00381dfcdebc1b392f0e05552775adc069f163.zip |
hyprctl: avoid .pop_back() on empty string
-rw-r--r-- | src/debug/HyprCtl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/debug/HyprCtl.cpp b/src/debug/HyprCtl.cpp index 29d2b4d1..f37b24e6 100644 --- a/src/debug/HyprCtl.cpp +++ b/src/debug/HyprCtl.cpp @@ -835,7 +835,8 @@ std::string dispatchSetCursor(std::string request) { std::string theme = ""; for (size_t i = 1; i < vars.size() - 1; ++i) theme += vars[i] + " "; - theme.pop_back(); + if (!theme.empty()) + theme.pop_back(); int size = 0; try { |