Merge "Don't attempt to stop the receive thread if we never started it." into mnc-dev

This commit is contained in:
Lorenzo Colitti
2015-08-12 03:38:57 +00:00
committed by Android (Google) Code Review

View File

@@ -603,7 +603,10 @@ public class DhcpClient extends BaseDhcpStateMachine {
@Override
public void exit() {
cancelOneshotTimeout();
mReceiveThread.halt(); // Also closes sockets.
if (mReceiveThread != null) {
mReceiveThread.halt(); // Also closes sockets.
mReceiveThread = null;
}
clearDhcpState();
}