note an assmued invariant that may not be obvious

This commit is contained in:
Jeff Epler 2023-11-28 13:38:13 -06:00
parent a38cd711ce
commit 9b2bc6b349
No known key found for this signature in database
GPG Key ID: D5BF15AB975AB4DE
1 changed files with 1 additions and 0 deletions

View File

@ -109,6 +109,7 @@ static int get_nbits(bitstream_state_t *st, int n) {
return r;
}
// note: the vstr must be a fixed-buffer vstr that matches the decompressed length of the string
static void decompress_vstr(mp_rom_error_text_t compressed, vstr_t *decompressed) {
bitstream_state_t b = {
.ptr = &(compressed->data) + (compress_max_length_bits >> 3),