mirror of
https://github.com/rad4day/Waybar.git
synced 2025-07-12 06:02:30 +02:00

There is a double delete situation which causes a SIGSEGV to happen during destruction of bar. This was introduced by the group feature patch. The same object pointer is stored in two different vectors of unique_ptr<AModule> element. Replace with shared_ptr to handle reference counting correctly and avoid double delete.