Message ID | 1466503372-28334-19-git-send-email-marcandre.lureau@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/hw/net/vhost_net.c b/hw/net/vhost_net.c index f1dd367..22ea653 100644 --- a/hw/net/vhost_net.c +++ b/hw/net/vhost_net.c @@ -417,6 +417,7 @@ VHostNetState *get_vhost_net(NetClientState *nc) break; case NET_CLIENT_OPTIONS_KIND_VHOST_USER: vhost_net = vhost_user_get_vhost_net(nc); + assert(vhost_net != NULL); break; default: break; diff --git a/net/vhost-user.c b/net/vhost-user.c index 4c7702f..95ed2d2 100644 --- a/net/vhost-user.c +++ b/net/vhost-user.c @@ -250,6 +250,8 @@ static int net_vhost_user_init(NetClientState *peer, const char *device, qemu_chr_add_handlers(chr, NULL, NULL, net_vhost_user_event, nc[0].name); + assert(s->vhost_net != NULL); + return 0; }