Skip past an unknown chunk. *stream should be pointing to the chunk's length field.
| 426 | // Skip past an unknown chunk. *stream should be |
| 427 | // pointing to the chunk's length field. |
| 428 | void SkipChunk (uint8_t **stream) |
| 429 | { |
| 430 | int len; |
| 431 | |
| 432 | len = ReadLong (stream); |
| 433 | *stream += len + (len & 1); |
| 434 | } |
nothing calls this directly
no test coverage detected