diff options
author | Andreas Schneider <asn@samba.org> | 2012-12-18 16:41:37 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2012-12-21 13:56:01 +0100 |
commit | e4649da0c72c3ec37c8a6a3920308f3ebcb1473e (patch) | |
tree | 6969954d660df85c7056e43af889c724c67db04b /libgpo | |
parent | 53f54432831ba1c369beaed7d4ca95749eb2ee39 (diff) | |
download | samba-e4649da0c72c3ec37c8a6a3920308f3ebcb1473e.tar.gz |
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.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libgpo/gpo_sec.c b/libgpo/gpo_sec.c index 456a218e198..af73697e56e 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; } |