| 58 | |
| 59 | |
| 60 | uint64_t readValidULEB128(const uint8_t*& current, const uint8_t* end) |
| 61 | { |
| 62 | uint64_t value = readLEB128(current, end); |
| 63 | if ((int64_t)value == -1) |
| 64 | throw ReadException(); |
| 65 | return value; |
| 66 | } |
| 67 | |
| 68 | void ApplySymbol(Ref<BinaryView> view, Ref<TypeLibrary> typeLib, Ref<Symbol> symbol, Ref<Type> type) |
| 69 | { |
no test coverage detected