Date: 01/16/01
- Next message: snono <email protected>: "[PHP-DEV] PHP 4.0 Bug #8747: Cant send a file with more than 2607 octets"
- Previous message: sniper <email protected>: "[PHP-DEV] PHP 4.0 Bug #8711 Updated: When I call the the ImageTTFText Function I receive a Segmentation Fault"
- In reply to: Steven Roussey: "[PHP-DEV] RE: mysql_pconnect still broken (was: RE: What does this mean ?)"
- Next in thread: Andi Gutmans: "Re: [PHP-DEV] RE: mysql_pconnect still broken (was: RE: What does this mean ?)"
- Reply: Andi Gutmans: "Re: [PHP-DEV] RE: mysql_pconnect still broken (was: RE: What does this mean ?)"
- Reply: Maciek Uhlig: "RE: [PHP-DEV] RE: mysql_pconnect still broken (was: RE: What does this mean ?)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Yep, you're right. Fixed.
Thanks,
Zeev
At 23:24 16/1/2001, Steven Roussey wrote:
> > OK. Look at a quick report. I've just installed php4-200101152345. It runs
> > with mysql-3.23.27-beta. Apache 1.3.12, Solaris 2.6 (local host) and 2.4
> > (remote connection).
> >
> > What I can see is: the offending messages didn't vanish at all (both hosts
> > are involved):
> > So, I think it's not fixed yet. Steven, you wrote about 99,8. I suppose
> > every Apache process here makes this error while ending. I just see it.
>
>:)
>
>Andi, I hope you are reading this.
>
>I looked at the CVS, and my patch was not properly applied. Andi has it
>looking through the non-persistant destructors, rather than the persistent
>ones (meaning that plist_entry_destructor is identical to
>list_entry_destructor).
>
>In file zend_list.c replace the plist_entry_destructor definition with:
>
>void plist_entry_destructor(void *ptr)
>{
> zend_rsrc_list_entry *le = (zend_rsrc_list_entry *) ptr;
> zend_rsrc_list_dtors_entry *ld;
>
> if (zend_hash_index_find(&list_destructors, le->type,(void **)
>&ld)==SUCCESS) {
> switch (ld->type) {
> case ZEND_RESOURCE_LIST_TYPE_STD:
> if (ld->plist_dtor) {
> (ld->plist_dtor)(le->ptr);
> }
> break;
> case ZEND_RESOURCE_LIST_TYPE_EX:
> if (ld->plist_dtor_ex) {
> ld->plist_dtor_ex(le);
> }
> break;
> EMPTY_SWITCH_DEFAULT_CASE()
> }
> } else {
> zend_error(E_WARNING,"Unknown persistent list entry type in
>module shutdown (%d)",le->type);
> }
>}
>
>
>
>
>Sincerely,
>
>Steven Roussey
>Network54.com
>http://network54.com/?pp=e
>
>
>--
>PHP Development Mailing List <http://www.php.net/>
>To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
>For additional commands, e-mail: php-dev-help <email protected>
>To contact the list administrators, e-mail: php-list-admin <email protected>
-- Zeev Suraski <zeev <email protected>> CTO & co-founder, Zend Technologies Ltd. http://www.zend.com/-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: snono <email protected>: "[PHP-DEV] PHP 4.0 Bug #8747: Cant send a file with more than 2607 octets"
- Previous message: sniper <email protected>: "[PHP-DEV] PHP 4.0 Bug #8711 Updated: When I call the the ImageTTFText Function I receive a Segmentation Fault"
- In reply to: Steven Roussey: "[PHP-DEV] RE: mysql_pconnect still broken (was: RE: What does this mean ?)"
- Next in thread: Andi Gutmans: "Re: [PHP-DEV] RE: mysql_pconnect still broken (was: RE: What does this mean ?)"
- Reply: Andi Gutmans: "Re: [PHP-DEV] RE: mysql_pconnect still broken (was: RE: What does this mean ?)"
- Reply: Maciek Uhlig: "RE: [PHP-DEV] RE: mysql_pconnect still broken (was: RE: What does this mean ?)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

