[porthole] fix unmap control flow

This commit is contained in:
Geoffrey McRae 2019-11-05 01:30:33 +11:00
parent 963e7f8393
commit 4c424cdbdf

View File

@ -268,7 +268,6 @@ static void * porthole_socket_thread(void * opaque)
break; break;
} }
} }
break;
// reply to the guest to allow it to continue // reply to the guest to allow it to continue
uint32_t reply = PH_MSG_UNMAP; uint32_t reply = PH_MSG_UNMAP;
@ -278,10 +277,12 @@ static void * porthole_socket_thread(void * opaque)
if (sendmsg(handle->socket, &msghdr, 0) < 0) if (sendmsg(handle->socket, &msghdr, 0) < 0)
{ {
DEBUG_ERROR("Failed to respond to the guest"); DEBUG_ERROR("Failed to respond to the guest");
handle->running = false;
if (handle->discon_cb) if (handle->discon_cb)
handle->discon_cb(); handle->discon_cb();
break;
} }
break;
} }
} }
} }