diff mbox

[PULL,16/24] linux-user: add missing return in netlink switch statement

Message ID 79b5fdb0708ecb118078182da1d42dd77dca57b1.1466760944.git.riku.voipio@linaro.org
State New
Headers show

Commit Message

Riku Voipio June 24, 2016, 9:53 a.m. UTC
From: Laurent Vivier <laurent@vivier.eu>

Reported-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
---
 linux-user/syscall.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox

Patch

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index b1ed57c..ce9f020 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -1692,6 +1692,7 @@  static abi_long target_to_host_for_each_nlmsg(struct nlmsghdr *nlh,
             struct nlmsgerr *e = NLMSG_DATA(nlh);
             e->error = tswap32(e->error);
             tswap_nlmsghdr(&e->msg);
+            return 0;
         }
         default:
             ret = target_to_host_nlmsg(nlh);