2
0
mirror of https://github.com/vasi/pixz synced 2024-10-30 15:21:41 +00:00

Fix cppcheck 2.8 uninitialized variables warnings

This commit is contained in:
Wolfgang Silbermayr 2022-05-27 09:19:02 +02:00
parent 1eb74e8ee8
commit 2f4db11558

View File

@ -448,7 +448,7 @@ static void write_block(pipeline_item_t *pi) {
static void encode_index(void) { static void encode_index(void) {
if (lzma_index_encoder(&gStream, gIndex) != LZMA_OK) if (lzma_index_encoder(&gStream, gIndex) != LZMA_OK)
die("Error creating index encoder"); die("Error creating index encoder");
uint8_t obuf[CHUNKSIZE]; uint8_t obuf[CHUNKSIZE] = {};
lzma_ret err = LZMA_OK; lzma_ret err = LZMA_OK;
while (err != LZMA_STREAM_END) { while (err != LZMA_STREAM_END) {
gStream.next_out = obuf; gStream.next_out = obuf;
@ -513,7 +513,7 @@ static void write_file_index_bytes(size_t size, uint8_t *buf) {
} }
static void write_file_index_buf(lzma_action action) { static void write_file_index_buf(lzma_action action) {
uint8_t obuf[CHUNKSIZE]; uint8_t obuf[CHUNKSIZE] = {};
gStream.avail_in = gFileIndexBufPos; gStream.avail_in = gFileIndexBufPos;
gStream.next_in = gFileIndexBuf; gStream.next_in = gFileIndexBuf;
lzma_ret err = LZMA_OK; lzma_ret err = LZMA_OK;