mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
ae6ca36fa7
Ipc destructor closes socket and thus wakes up SleeperThread which was waiting for socket data in Ipc::handleEvent. Ipc::handleEvent then proceeds with sending signal to already destroyed object, causing heap-use-after-free Address Sanitizer error.
28 lines
566 B
C++
28 lines
566 B
C++
#pragma once
|
|
|
|
#include <fmt/format.h>
|
|
#include "ALabel.hpp"
|
|
#include "bar.hpp"
|
|
#include "client.hpp"
|
|
#include "modules/sway/ipc/client.hpp"
|
|
#include "util/json.hpp"
|
|
|
|
namespace waybar::modules::sway {
|
|
|
|
class Mode : public ALabel, public sigc::trackable {
|
|
public:
|
|
Mode(const std::string&, const Json::Value&);
|
|
~Mode() = default;
|
|
auto update() -> void;
|
|
|
|
private:
|
|
void onEvent(const struct Ipc::ipc_response&);
|
|
|
|
std::string mode_;
|
|
util::JsonParser parser_;
|
|
std::mutex mutex_;
|
|
Ipc ipc_;
|
|
};
|
|
|
|
} // namespace waybar::modules::sway
|