| 150 | } |
| 151 | |
| 152 | string getString() |
| 153 | { |
| 154 | const auto length = getInt32(); |
| 155 | |
| 156 | if (m_data + length > m_end) |
| 157 | malformed(); |
| 158 | |
| 159 | const string str((const char*) m_data, length); |
| 160 | m_data += length; |
| 161 | return str; |
| 162 | } |
| 163 | |
| 164 | const UCHAR* getBinary(ULONG length) |
| 165 | { |
no outgoing calls
no test coverage detected