mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-11 11:08:02 -06:00
Windows: Update libzip to version 1.5.0 that include fixes for some security issues.
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
3. The names of the authors may not be used to endorse or promote
|
||||
products derived from this software without specific prior
|
||||
written permission.
|
||||
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS
|
||||
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
@@ -36,21 +36,18 @@
|
||||
|
||||
|
||||
ZIP_EXTERN int
|
||||
zip_stat_index(zip_t *za, zip_uint64_t index, zip_flags_t flags,
|
||||
zip_stat_t *st)
|
||||
{
|
||||
zip_stat_index(zip_t *za, zip_uint64_t index, zip_flags_t flags, zip_stat_t *st) {
|
||||
const char *name;
|
||||
zip_dirent_t *de;
|
||||
|
||||
if ((de=_zip_get_dirent(za, index, flags, NULL)) == NULL)
|
||||
if ((de = _zip_get_dirent(za, index, flags, NULL)) == NULL)
|
||||
return -1;
|
||||
|
||||
if ((name=zip_get_name(za, index, flags)) == NULL)
|
||||
if ((name = zip_get_name(za, index, flags)) == NULL)
|
||||
return -1;
|
||||
|
||||
|
||||
if ((flags & ZIP_FL_UNCHANGED) == 0
|
||||
&& ZIP_ENTRY_DATA_CHANGED(za->entry+index)) {
|
||||
|
||||
if ((flags & ZIP_FL_UNCHANGED) == 0 && ZIP_ENTRY_DATA_CHANGED(za->entry + index)) {
|
||||
if (zip_source_stat(za->entry[index].source, st) < 0) {
|
||||
zip_error_set(&za->error, ZIP_ER_CHANGED, 0);
|
||||
return -1;
|
||||
@@ -65,13 +62,12 @@ zip_stat_index(zip_t *za, zip_uint64_t index, zip_flags_t flags,
|
||||
st->comp_size = de->comp_size;
|
||||
st->comp_method = (zip_uint16_t)de->comp_method;
|
||||
st->encryption_method = de->encryption_method;
|
||||
st->valid = (de->crc_valid ? ZIP_STAT_CRC : 0) | ZIP_STAT_SIZE|ZIP_STAT_MTIME
|
||||
|ZIP_STAT_COMP_SIZE|ZIP_STAT_COMP_METHOD|ZIP_STAT_ENCRYPTION_METHOD;
|
||||
st->valid = (de->crc_valid ? ZIP_STAT_CRC : 0) | ZIP_STAT_SIZE | ZIP_STAT_MTIME | ZIP_STAT_COMP_SIZE | ZIP_STAT_COMP_METHOD | ZIP_STAT_ENCRYPTION_METHOD;
|
||||
}
|
||||
|
||||
st->index = index;
|
||||
st->name = name;
|
||||
st->valid |= ZIP_STAT_INDEX|ZIP_STAT_NAME;
|
||||
|
||||
st->valid |= ZIP_STAT_INDEX | ZIP_STAT_NAME;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user