Feature: Fix memory leak when recording a video log

This commit is contained in:
Vicki Pfau 2025-02-28 21:37:04 -08:00
parent eeb52e4027
commit 056f53ff4a
1 changed files with 1 additions and 0 deletions

View File

@ -417,6 +417,7 @@ static void _compress(struct VFile* dest, struct VFile* src) {
}
dest->write(dest, compressBuffer, sizeof(compressBuffer) - zstr.avail_out);
} while (sizeof(compressBuffer) - zstr.avail_out);
deflateEnd(&zstr);
}
static bool _decompress(struct VFile* dest, struct VFile* src, size_t compressedLength) {