From 189736c1a96a1ad0e571ad69f01039e96455011a Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 22 Feb 2025 13:31:51 +0100 Subject: Add option to take a screenshot (default hotkey: alt+f1) --- src/Hotplug.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/Hotplug.cpp') diff --git a/src/Hotplug.cpp b/src/Hotplug.cpp index 84ed5bb..0f5155c 100644 --- a/src/Hotplug.cpp +++ b/src/Hotplug.cpp @@ -44,9 +44,10 @@ namespace gsr { } void Hotplug::process_event_data(int fd, const HotplugEventCallback &callback) { - const int bytes_read = read(fd, event_data, sizeof(event_data)); + const int bytes_read = read(fd, event_data, sizeof(event_data) - 1); if(bytes_read <= 0) return; + event_data[bytes_read] = '\0'; /* Hotplug data ends with a newline and a null terminator */ int data_index = 0; -- cgit v1.2.3-70-g09d2