summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Bray <ncbray@google.com>2018-03-20 16:40:35 -0700
committerNick Bray <ncbray@google.com>2018-03-21 18:30:56 +0000
commit525e2d9bb73af6b765a4604f04184f66cc81f72e (patch)
tree5b006ad02c9411c6fad80d2afef1e00116788dfc
parenta1ba90df6372d7194fcb2fa59d69f0d53b2141a6 (diff)
downloadkeymaster-525e2d9bb73af6b765a4604f04184f66cc81f72e.tar.gz
Add missing break in switch statement.
This bug was introduced in I06b61128ff72b119747cfce9cab754b22a13ec00. Bug: 76101949 Test: compiles with -Wimplicit-fallthrough Change-Id: I4df472854946b40319a0677c9f8f5f2c52129f34
-rw-r--r--km_openssl/attestation_record.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/km_openssl/attestation_record.cpp b/km_openssl/attestation_record.cpp
index fb61155..c4a1afc 100644
--- a/km_openssl/attestation_record.cpp
+++ b/km_openssl/attestation_record.cpp
@@ -189,6 +189,7 @@ keymaster_error_t build_auth_list(const AuthorizationSet& auth_list, KM_AUTH_LIS
break;
case KM_TAG_MIN_MAC_LENGTH:
integer_ptr = &record->min_mac_length;
+ break;
/* Non-repeating long unsigned integers */
case KM_TAG_RSA_PUBLIC_EXPONENT: