]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s4:registry: Add missing break in switch statement
authorAndreas Schneider <asn@samba.org>
Mon, 1 Feb 2021 13:36:57 +0000 (14:36 +0100)
committerJeremy Allison <jra@samba.org>
Mon, 1 Feb 2021 21:50:32 +0000 (21:50 +0000)
error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough]

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/registry/reg_parse.c

index 24e9b62a516d800ee5d483871fa9e5ef7eaf4eb6..6230b000c3b9f0ff61d14ddd08af46120dfc6af8 100644 (file)
@@ -121,6 +121,7 @@ static bool act_val_hex(struct reg_parse* p, cbuf* value, bool cont)
                                }
                                talloc_free(dst);
                        }
+                       break;
                default:
                        break;
                }