Commit c0cb8801 authored by Laurent Vivier's avatar Laurent Vivier
Browse files

linux-user: fix missing break



Reported by Coverity (CID 1407221)
Fixes: a2d86682 ("linux-user: Support for NETLINK socket options")
cc: Josh Kunz <jkz@google.com>
Signed-off-by: default avatarLaurent Vivier <laurent@vivier.eu>
Reviewed-by: default avatarPhilippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20191112105055.32269-1-laurent@vivier.eu>
parent 2a7e7c3e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2632,6 +2632,7 @@ static abi_long do_getsockopt(int sockfd, int level, int optname,
        default:
            goto unimplemented;
        }
        break;
#endif /* SOL_NETLINK */
    default:
    unimplemented: