X-Git-Url: https://git.saurik.com/apple/security.git/blobdiff_plain/5c19dc3ae3bd8e40a9c028b0deddd50ff337692c..7e6b461318c8a779d91381531435a68ee4e8b6ed:/OSX/libsecurity_filedb/lib/DbValue.cpp?ds=sidebyside diff --git a/OSX/libsecurity_filedb/lib/DbValue.cpp b/OSX/libsecurity_filedb/lib/DbValue.cpp index f004fa34..f56162f4 100644 --- a/OSX/libsecurity_filedb/lib/DbValue.cpp +++ b/OSX/libsecurity_filedb/lib/DbValue.cpp @@ -425,7 +425,6 @@ BigNumValue::evaluate(const BigNumValue &other, CSSM_DB_OPERATOR op) const int c = compare(Data, other.Data, length1); return sign1 ? (c > 0) : (c < 0); } - break; case CSSM_DB_GREATER_THAN: if (sign1 ^ sign2) @@ -436,7 +435,6 @@ BigNumValue::evaluate(const BigNumValue &other, CSSM_DB_OPERATOR op) const int c = compare(Data, other.Data, length1); return sign1 ? (c < 0) : (c > 0); } - break; case CSSM_DB_CONTAINS: case CSSM_DB_CONTAINS_INITIAL_SUBSTRING: