Fixed compiler errors and warnings.

This commit is contained in:
Nathan Moinvaziri 2018-10-28 12:36:15 -07:00
parent fac97955d1
commit 619b2b3c8b
2 changed files with 4 additions and 4 deletions

View File

@ -590,7 +590,7 @@ int32_t mz_zip_reader_entry_get_first_hash(void *handle, uint16_t *algorithm, ui
err = mz_zip_extrafield_find(file_extra_stream, MZ_ZIP_EXTENSION_HASH, NULL);
if (err == MZ_OK)
err = mz_stream_read_uint32(file_extra_stream, &cur_algorithm);
err = mz_stream_read_uint16(file_extra_stream, &cur_algorithm);
if (err == MZ_OK)
err = mz_stream_read_uint16(file_extra_stream, &cur_digest_size);
@ -1346,8 +1346,8 @@ int32_t mz_zip_writer_entry_close(void *handle)
#ifndef MZ_ZIP_NO_SIGNING
if (writer->cert_path != NULL)
err = mz_zip_writer_entry_sign(handle, MZ_HASH_SHA256,
sha256, sizeof(sha256), writer->cert_path, writer->cert_pwd);
err = mz_zip_writer_entry_sign(handle, sha256, sizeof(sha256),
writer->cert_path, writer->cert_pwd);
#endif
// Update extra field for central directory after adding extra fields

View File

@ -81,7 +81,7 @@ int32_t mz_zip_reader_entry_sign_verify(void *handle);
int32_t mz_zip_reader_entry_get_hash(void *handle, uint16_t algorithm, uint8_t *digest, int32_t digest_size);
// Gets a hash algorithm from the entry's extra field
int32_t mz_zip_reader_entry_get_best_hash(void *handle, uint16_t *algorithm, uint16_t *digest_size);
int32_t mz_zip_reader_entry_get_first_hash(void *handle, uint16_t *algorithm, uint16_t *digest_size);
// Gets the most secure hash algorithm from the entry's extra field
int32_t mz_zip_reader_entry_get_info(void *handle, mz_zip_file **file_info);