[PHP-DEV] handle member in zend_module_entry is not getting populated(New issue)(Posted second time)

2004-07-19 Thread Kamesh Jayachandran
Hi, Now handle member of zend_module_entry is getting populated(see php_dl function inside the ext/standard/dl.c). But it will not help as it should be set before calling zend_register_module_ex.(As this function copies the whole zend_module_entry to module_registry which is later used when trying

[PHP-DEV] handle member in zend_module_entry is not getting populated(New issue)

2004-07-14 Thread Kamesh Jayachandran
Hi, Now handle member of zend_module_entry is getting populated(see php_dl function inside the ext/standard/dl.c). But it will not help as it should be set before calling zend_register_module_ex.(As this function copies the whole zend_module_entry to module_registry which is later used when trying

Re: [PHP-DEV] handle member in zend_module_entry is not getting populated

2004-07-06 Thread Marcus Boerger
Hello Kamesh, Tuesday, July 6, 2004, 5:58:20 PM, you wrote: > Hi All, > In Zend/zend_API.c > function module_destructor > There is a code to do a dlclose on the dlopened handle. > The code looks like following, > if (module->handle) { > dlclose(module->handle); > } > U

[PHP-DEV] handle member in zend_module_entry is not getting populated

2004-07-06 Thread Kamesh Jayachandran
Hi All, In Zend/zend_API.c function module_destructor There is a code to do a dlclose on the dlopened handle. The code looks like following, if (module->handle) { dlclose(module->handle); } Unfortunately this module->handle is always 0 which causes this symbols not