| 832 | } |
| 833 | |
| 834 | static bool in_ranges(u64 numtype, |
| 835 | u64 r1_start, u64 r1_end, |
| 836 | u64 r2_start, u64 r2_end) |
| 837 | { |
| 838 | if (numtype >= r1_start && numtype <= r1_end) |
| 839 | return true; |
| 840 | if (numtype >= r2_start && numtype <= r2_end) |
| 841 | return true; |
| 842 | return false; |
| 843 | } |
| 844 | |
| 845 | const struct tlv_field *any_field_outside_range(const struct tlv_field *fields, |
| 846 | bool ignore_signature_fields, |
no outgoing calls
no test coverage detected