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:
Laurent Vivier 2019-11-12 11:50:55 +01:00
parent 2a7e7c3e10
commit c0cb880153

View file

@ -2632,6 +2632,7 @@ static abi_long do_getsockopt(int sockfd, int level, int optname,
default:
goto unimplemented;
}
break;
#endif /* SOL_NETLINK */
default:
unimplemented: