diff options
author | Pierre Joye <pajoye@php.net> | 2006-11-03 16:46:19 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2006-11-03 16:46:19 +0000 |
commit | 8ad0c6d543f5161c5a42536002884a30c153fefd (patch) | |
tree | 961388a6f097141242ea3c8744a4c1d1c77be72b /ext/zip/lib/zipint.h | |
parent | c002606a8888a0b85b7095c8809b136a815e0bab (diff) | |
download | php-git-8ad0c6d543f5161c5a42536002884a30c153fefd.tar.gz |
- MFH:
- fix possible leak in statName and statIndex
- add addEmptyDir() method
- add zip_stat_init,zip_clear_error and zip_file_clear_error
- add tests
- Fix protos (Hannes)
- setComment return value on success (Hannes)
Diffstat (limited to 'ext/zip/lib/zipint.h')
-rw-r--r-- | ext/zip/lib/zipint.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/zip/lib/zipint.h b/ext/zip/lib/zipint.h index 9efaf06a33..ebf2743f99 100644 --- a/ext/zip/lib/zipint.h +++ b/ext/zip/lib/zipint.h @@ -199,6 +199,7 @@ void _zip_entry_free(struct zip_entry *); void _zip_entry_init(struct zip *, int); struct zip_entry *_zip_entry_new(struct zip *); +void _zip_error_clear(struct zip_error *); void _zip_error_copy(struct zip_error *, struct zip_error *); void _zip_error_fini(struct zip_error *); void _zip_error_get(struct zip_error *, int *, int *); |