mirror of https://gitee.com/openkylin/qemu.git
linux-user: fix missing break
Reported by Coverity (CID 1407221)
Fixes: a2d866827b
("linux-user: Support for NETLINK socket options")
cc: Josh Kunz <jkz@google.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20191112105055.32269-1-laurent@vivier.eu>
This commit is contained in:
parent
2a7e7c3e10
commit
c0cb880153
|
@ -2632,6 +2632,7 @@ static abi_long do_getsockopt(int sockfd, int level, int optname,
|
|||
default:
|
||||
goto unimplemented;
|
||||
}
|
||||
break;
|
||||
#endif /* SOL_NETLINK */
|
||||
default:
|
||||
unimplemented:
|
||||
|
|
Loading…
Reference in New Issue