Sync with pecl/zip 1.12.4dev

- update bunled libzip to 0.11.2
- expose zip_file_set_external_attributes + zip_file_get_external_attributes
  with new methods:
	ZipArchive::setExternalAttributesName
	ZipArchive::setExternalAttributesIndex
	ZipArchive::getExternalAttributesName
	ZipArchive::getExternalAttributesIndex
This commit is contained in:
Remi Collet 2013-12-30 07:35:30 +01:00
parent 5a756afcf1
commit 0a950a0500
31 changed files with 401 additions and 112 deletions

View file

@ -44,6 +44,6 @@ zip_get_num_files(struct zip *za)
if (za == NULL)
return -1;
/* XXX: check for overflow */
/* TODO: check for overflow */
return (int)za->nentry;
}