1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 10:12:18 +01:00

Removed zend_get_module(), this function is not used by anything and more

importantly. it does not work. It tries to find data based on numeric keys
in hash table using string keys.
This commit is contained in:
Ilia Alshanetsky
2003-02-12 16:50:51 +00:00
parent 3c2a1255cd
commit a2bd043e7b
2 changed files with 0 additions and 12 deletions

View File

@@ -1373,17 +1373,6 @@ ZEND_API zend_class_entry *zend_register_internal_class(zend_class_entry *orig_c
}
ZEND_API zend_module_entry *zend_get_module(int module_number)
{
zend_module_entry *module;
if (zend_hash_index_find(&module_registry, module_number, (void **) &module)==SUCCESS) {
return module;
} else {
return NULL;
}
}
ZEND_API int zend_set_hash_symbol(zval *symbol, char *name, int name_length,
zend_bool is_ref, int num_symbol_tables, ...)
{

View File

@@ -135,7 +135,6 @@ ZEND_API int zend_register_module(zend_module_entry *module_entry);
ZEND_API zend_class_entry *zend_register_internal_class(zend_class_entry *class_entry TSRMLS_DC);
ZEND_API zend_class_entry *zend_register_internal_class_ex(zend_class_entry *class_entry, zend_class_entry *parent_ce, char *parent_name TSRMLS_DC);
ZEND_API zend_module_entry *zend_get_module(int module_number);
ZEND_API int zend_disable_function(char *function_name, uint function_name_length TSRMLS_DC);
ZEND_API void zend_wrong_param_count(TSRMLS_D);