summaryrefslogtreecommitdiff
path: root/libgpo
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2012-12-18 16:41:37 +0100
committerGünther Deschner <gd@samba.org>2012-12-21 13:56:01 +0100
commite4649da0c72c3ec37c8a6a3920308f3ebcb1473e (patch)
tree6969954d660df85c7056e43af889c724c67db04b /libgpo
parent53f54432831ba1c369beaed7d4ca95749eb2ee39 (diff)
downloadsamba-e4649da0c72c3ec37c8a6a3920308f3ebcb1473e.tar.gz
samba-e4649da0c72c3ec37c8a6a3920308f3ebcb1473e.tar.bz2
samba-e4649da0c72c3ec37c8a6a3920308f3ebcb1473e.zip
libgpo: Make it clear that we want to fall trough here.
Found by Coverity. Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'libgpo')
-rw-r--r--libgpo/gpo_sec.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libgpo/gpo_sec.c b/libgpo/gpo_sec.c
index 456a218e19..af73697e56 100644
--- a/libgpo/gpo_sec.c
+++ b/libgpo/gpo_sec.c
@@ -47,11 +47,13 @@ static bool gpo_sd_check_agp_object_guid(const struct security_ace_object *objec
&ext_right_apg_guid)) {
return true;
}
+ /* FALL TROUGH */
case SEC_ACE_INHERITED_OBJECT_TYPE_PRESENT:
if (GUID_equal(&object->inherited_type.inherited_type,
&ext_right_apg_guid)) {
return true;
}
+ /* FALL TROUGH */
default:
break;
}