Merge pull request #104 from silwol/dev/cppcheck-uninitialized-variables

Fix cppcheck 2.8 uninitialized variables warnings
pull/107/head
Dave Vasilevsky 2 years ago committed by GitHub
commit f1b1b5f8af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -448,7 +448,7 @@ static void write_block(pipeline_item_t *pi) {
static void encode_index(void) {
if (lzma_index_encoder(&gStream, gIndex) != LZMA_OK)
die("Error creating index encoder");
uint8_t obuf[CHUNKSIZE];
uint8_t obuf[CHUNKSIZE] = {};
lzma_ret err = LZMA_OK;
while (err != LZMA_STREAM_END) {
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) {
uint8_t obuf[CHUNKSIZE];
uint8_t obuf[CHUNKSIZE] = {};
gStream.avail_in = gFileIndexBufPos;
gStream.next_in = gFileIndexBuf;
lzma_ret err = LZMA_OK;

Loading…
Cancel
Save