summaryrefslogtreecommitdiff
path: root/ext/zip/php_zip.c
Commit message (Collapse)AuthorAgeFilesLines
* It's a size_t here, not an unsigned int.Rasmus Lerdorf2010-02-091-2/+2
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* Fixed a bug in parameter passing/conversion API which caused tons of memleak ↵Dmitry Stogov2009-09-231-12/+12
| | | | and was the reason of ~1500 test failurs
* - This is PHP 6 - if this ... ever gets outMarcus Boerger2009-03-101-1/+1
|
* MFB: Adjust previous fixIlia Alshanetsky2009-02-241-0/+1
|
* MFB: Fixed 2 memory corruptions in zip extension idenfied byIlia Alshanetsky2009-02-221-3/+5
| | | | | oo_properties.phpt test
* - MFB: fix filename property readPierre Joye2009-01-021-1/+1
|
* Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* - Added 'static' into ZEND_BEGIN_ARG_INFO_EX macro (again!)Felipe Pena2008-11-171-10/+0
|
* - Removed unused variablesFelipe Pena2008-11-121-3/+0
|
* - fix #14962 (makes 2nd argument really optional)Pierre Joye2008-11-121-14/+15
| | | | | | - replace ZEND_ENGINE_2_1 test with PHP_ZIP_USE_OO, version independent - sync tests with 5.3
* - Revert ZEND_BEGIN_ARG_INFO changeFelipe Pena2008-11-021-0/+10
|
* - Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-10-241-10/+0
|
* - MFB: flatten path and make them relative before extractionPierre Joye2008-10-231-26/+140
|
* initialize optional varsArnaud Le Blanc2008-10-211-4/+4
|
* - Removed unused variablesFelipe Pena2008-08-151-2/+0
|
* - sync with 5.3Pierre Joye2008-08-081-94/+479
|
* - MFB: Added arginfo (functions)Felipe Pena2008-07-031-10/+65
|
* fix typoAntony Dovgal2008-07-011-1/+1
|
* - MFB: reflect the correct versionPierre Joye2008-01-181-2/+2
|
* MF5.3: install headers, use correct zip versionGreg Beaver2008-01-181-1/+1
|
* fix buildAntony Dovgal2008-01-141-1/+1
|
* MFB: a few fixes: overwrote all my careful work in zipint_alias.h with ↵Greg Beaver2008-01-131-3/+3
| | | | | | | zipint.h, so had to restore that. PHP_RAW_NAMED_FE() won't work, have to use ZEND_RAW_FENTRY
* MFPECL: alias all zip identifiers to avoid potential name conflicts with ↵Greg Beaver2008-01-131-23/+33
| | | | other apache libs that may export zip symbols
* Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFB: Fix protosHannes Magnusson2007-12-151-27/+27
|
* Added macros for managing zval refcounts and is_ref statusesYiduo (David) Wang2007-10-071-3/+3
|
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-2/+2
|
* - Fix isset/empty($ZipArchive->property)Hannes Magnusson2007-08-061-0/+50
| | | | | - Add test
* fix wsAntony Dovgal2007-06-041-2/+2
|
* - MFB: fix logicPierre Joye2007-06-031-1/+2
|
* - MFB: PECL #11216, addEmptyDir crashes if the directory already existsPierre Joye2007-06-031-3/+31
|
* - MFB:Pierre Joye2007-05-191-8/+12
| | | | | | | - Fixed a possible crash in the event directory cannot be created, due to a double free. (Ilia) - Use the same tests for zip_stat
* - MFB: Fixed a possible memory leak on open_basedir validation (Ilia)Pierre Joye2007-03-141-1/+2
|
* - add openbase_dir checks in ::open and addFile()Pierre Joye2007-03-141-0/+8
|
* - MFB: free rsrc on error in zip_read (old API)Pierre Joye2007-03-141-0/+1
|
* - MFB: free buffer when zip_entry_read returns an empty entryPierre Joye2007-03-141-0/+1
|
* - MFB:Pierre Joye2007-03-141-0/+18
| | | | | | | | - rename SAFEMODE_CHECKFILE to OPENBASEDIR_CHECKPATH (can be used without confusing in head without confusion) - Add safemode and open basedir checks in zip:// wrapper (revert Ilia's patch). Bug found by Stefan Esser in his MOPB-20-2007
* - MFB: #40228, ZipArchive::extractTo does create empty directoriesPierre Joye2007-01-291-10/+17
| | | | | recursively
* MFBNuno Lopes2007-01-061-3/+9
|
* Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* add missing space for \0Antony Dovgal2006-12-251-2/+2
|
* MFB: safety checksIlia Alshanetsky2006-12-231-12/+11
|
* - unicode support for the procedural APIPierre Joye2006-12-191-26/+37
|
* - MFB: addDir returns truePierre Joye2006-12-101-0/+1
|
* MFB: fix leak in the object destrucotr when zip_close() fails (fixes ↵Nuno Lopes2006-11-121-1/+3
| | | | oo_delete.phpt)
* MFB: fix leaks within zip entries in several testsNuno Lopes2006-11-111-2/+9
|
* MFB: static'ficationNuno Lopes2006-11-091-73/+60
|
* - fix protosPierre Joye2006-11-031-2/+2
|
* - fix stat when used with freshly added entriesPierre Joye2006-11-011-0/+30
| | | | | | - add zip_clear_error, zip_file_clear_error and zip_stat_init in libzip - add addEmptyDir(name) method, creates an empty directory