Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix missing installer initialization
The current_process field of struct installer was not initialized. Since the installer instance is static, its default value was 0. The call to installer_stop() then called kill(0, SIGTERM) (on Linux), which sent SIGTERM to every process in the process group. In particular, the scrcpy process was killed. As a consequence, the last cleanup steps, like disabling "show touches", were not executed. Fixes <#183>.
- Loading branch information