Reset current installer process
The current_process field was never reset after an installation is complete. As a consequence, installer_stop() attempted to terminate it, leading to a warning, at best.
This commit is contained in:
parent
cde0b3d248
commit
2daeb1fd5f
1 changed files with 1 additions and 0 deletions
|
@ -118,6 +118,7 @@ static int run_installer(void *data) {
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
mutex_lock(installer->mutex);
|
mutex_lock(installer->mutex);
|
||||||
|
installer->current_process = PROCESS_NONE;
|
||||||
while (!installer->stopped && apk_queue_is_empty(&installer->queue)) {
|
while (!installer->stopped && apk_queue_is_empty(&installer->queue)) {
|
||||||
cond_wait(installer->event_cond, installer->mutex);
|
cond_wait(installer->event_cond, installer->mutex);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue