Fix infinite loop in exit routine
This commit is contained in:
parent
34891d92cd
commit
09a9bc2899
@ -245,9 +245,10 @@ func (device *Device) RoutineDecryption() {
|
|||||||
elem.Drop()
|
elem.Drop()
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
break
|
goto out
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
out:
|
||||||
logDebug.Println("Routine: decryption worker - stopped")
|
logDebug.Println("Routine: decryption worker - stopped")
|
||||||
}()
|
}()
|
||||||
logDebug.Println("Routine: decryption worker - started")
|
logDebug.Println("Routine: decryption worker - started")
|
||||||
@ -317,9 +318,10 @@ func (device *Device) RoutineHandshake() {
|
|||||||
select {
|
select {
|
||||||
case <-device.queue.handshake:
|
case <-device.queue.handshake:
|
||||||
default:
|
default:
|
||||||
return
|
goto out
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
out:
|
||||||
logDebug.Println("Routine: handshake worker - stopped")
|
logDebug.Println("Routine: handshake worker - stopped")
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user