mirror of
https://github.com/flatpak/flatpak.git
synced 2026-03-31 21:34:20 -04:00
Most access to the `client_pid_data_hash` hash table are unsafe due to threading. One approach to solve this would be to protect the hash table with a mutex, but as per a deeper analysis, nothing in these callbacks is slow or heavy enough to justify the need for separate threads. Make method invocations run in the main thread. Closes: https://github.com/flatpak/flatpak/issues/5605