mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Mark parameter in ext/zip as sensitive
This commit is contained in:
parent
8f8243318d
commit
1a4401d40a
3 changed files with 27 additions and 4 deletions
|
@ -26,6 +26,7 @@
|
|||
#include "ext/standard/php_string.h"
|
||||
#include "ext/pcre/php_pcre.h"
|
||||
#include "ext/standard/php_filestat.h"
|
||||
#include "zend_attributes.h"
|
||||
#include "zend_interfaces.h"
|
||||
#include "php_zip.h"
|
||||
#include "php_zip_arginfo.h"
|
||||
|
@ -3255,6 +3256,8 @@ static PHP_MINIT_FUNCTION(zip)
|
|||
le_zip_dir = zend_register_list_destructors_ex(php_zip_free_dir, NULL, le_zip_dir_name, module_number);
|
||||
le_zip_entry = zend_register_list_destructors_ex(php_zip_free_entry, NULL, le_zip_entry_name, module_number);
|
||||
|
||||
register_php_zip_symbols(module_number, zip_class_entry);
|
||||
|
||||
return SUCCESS;
|
||||
}
|
||||
/* }}} */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue