]> git.saurik.com Git - apple/security.git/blobdiff - OSX/libsecurity_filedb/lib/DbValue.cpp
Security-59306.61.1.tar.gz
[apple/security.git] / OSX / libsecurity_filedb / lib / DbValue.cpp
index f004fa34dd108b6082aacb5a3acc027e7ebfab1e..f56162f41c3c94f37373d1bef789c827765362ad 100644 (file)
@@ -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);
                }
                        int c = compare(Data, other.Data, length1);
                        return sign1 ? (c > 0) : (c < 0);
                }
-               break;
                
        case CSSM_DB_GREATER_THAN:
                if (sign1 ^ sign2)
                
        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);
                }
                        int c = compare(Data, other.Data, length1);
                        return sign1 ? (c < 0) : (c > 0);
                }
-               break;
                
        case CSSM_DB_CONTAINS:
        case CSSM_DB_CONTAINS_INITIAL_SUBSTRING:
                
        case CSSM_DB_CONTAINS:
        case CSSM_DB_CONTAINS_INITIAL_SUBSTRING: