Re: [PHP-DEV] [PATCH]Memory leaking when calling an overloaded class member

2002-05-01 Thread brad lafountain

Ya know.. i might just give up here...

Ignore this.. i realized that my handler should free this memory..

 - Brad

i hate people like me!

--- brad lafountain <[EMAIL PROTECTED]> wrote:
> Ignore the patch
> I really should compile and test the patch before i submit it..
> 
> It sill is a leak tho.. Ill repatch... Ill also test it this time :)
> 
> - brad
> --- brad lafountain <[EMAIL PROTECTED]> wrote:
> > I get this error:
> > 
> > f:\php-4.2.0\zend\zend_execute.c(1503) :  Freeing 0x00DDD278 (11 bytes),
> > script=test2.php
> > f:\php-4.2.0\zend\zend_variables.c(106) : Actual location (location was
> > relayed)
> > Last leak repeated 1 time
> > 
> > i took alook at the code..
> > 
> > here is where it creates the memory
> > tmp = *function_name;
> > zval_copy_ctor(&tmp);
> > 
> > 
> > here shoud be the delete..
> > zval_dtor(&tmp);
> > EX(fbc) = function;
> > overloaded_function_call_cont:
> > FREE_OP(EX(Ts), &EX(opline)->op2, EG(free_op2));
> > 
> > but as you see the goto overloaded_function_call_cont; 
> > skips the free.
> > 
> > Patch is supplied
> > 
> > _brad_
> > 
> > 
> > 
> > __
> > Do You Yahoo!?
> > Yahoo! Health - your guide to health and wellness
> > http://health.yahoo.com> --- zend_execute_cvs.c Wed May  1 19:22:11 2002
> > +++ zend_execute.c  Wed May  1 19:22:53 2002
> > @@ -1563,9 +1563,9 @@
> > if (zend_hash_find(active_function_table,
> function_name->value.str.val,
> > function_name->value.str.len+1, (void **) &function)==FAILURE) {
> > zend_error(E_ERROR, "Call to undefined 
>function:  %s()",
> > function_name->value.str.val);
> > }
> > -   zval_dtor(&tmp);
> > EX(fbc) = function;
> >  overloaded_function_call_cont:
> > +   zval_dtor(&tmp);
> > FREE_OP(EX(Ts), &EX(opline)->op2, 
>EG(free_op2));
> > }
> > NEXT_OPCODE();
> > 
> > > -- 
> > PHP Development Mailing List 
> > To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 
> __
> Do You Yahoo!?
> Yahoo! Health - your guide to health and wellness
> http://health.yahoo.com


__
Do You Yahoo!?
Yahoo! Health - your guide to health and wellness
http://health.yahoo.com

-- 
PHP Development Mailing List 
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-DEV] [PATCH]Memory leaking when calling an overloaded class member

2002-05-01 Thread brad lafountain

Ignore the patch
I really should compile and test the patch before i submit it..

It sill is a leak tho.. Ill repatch... Ill also test it this time :)

- brad
--- brad lafountain <[EMAIL PROTECTED]> wrote:
> I get this error:
> 
> f:\php-4.2.0\zend\zend_execute.c(1503) :  Freeing 0x00DDD278 (11 bytes),
> script=test2.php
> f:\php-4.2.0\zend\zend_variables.c(106) : Actual location (location was
> relayed)
> Last leak repeated 1 time
> 
> i took alook at the code..
> 
> here is where it creates the memory
> tmp = *function_name;
> zval_copy_ctor(&tmp);
> 
> 
> here shoud be the delete..
> zval_dtor(&tmp);
> EX(fbc) = function;
> overloaded_function_call_cont:
> FREE_OP(EX(Ts), &EX(opline)->op2, EG(free_op2));
> 
> but as you see the goto overloaded_function_call_cont; 
> skips the free.
> 
> Patch is supplied
> 
> _brad_
> 
> 
> 
> __
> Do You Yahoo!?
> Yahoo! Health - your guide to health and wellness
> http://health.yahoo.com> --- zend_execute_cvs.c   Wed May  1 19:22:11 2002
> +++ zend_execute.cWed May  1 19:22:53 2002
> @@ -1563,9 +1563,9 @@
>   if (zend_hash_find(active_function_table, 
>function_name->value.str.val,
> function_name->value.str.len+1, (void **) &function)==FAILURE) {
>   zend_error(E_ERROR, "Call to undefined 
>function:  %s()",
> function_name->value.str.val);
>   }
> - zval_dtor(&tmp);
>   EX(fbc) = function;
>  overloaded_function_call_cont:
> + zval_dtor(&tmp);
>   FREE_OP(EX(Ts), &EX(opline)->op2, 
>EG(free_op2));
>   }
>   NEXT_OPCODE();
> 
> > -- 
> PHP Development Mailing List 
> To unsubscribe, visit: http://www.php.net/unsub.php


__
Do You Yahoo!?
Yahoo! Health - your guide to health and wellness
http://health.yahoo.com

-- 
PHP Development Mailing List 
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-DEV] [PATCH]Memory leaking when calling an overloaded class member

2002-05-01 Thread brad lafountain

I get this error:

f:\php-4.2.0\zend\zend_execute.c(1503) :  Freeing 0x00DDD278 (11 bytes),
script=test2.php
f:\php-4.2.0\zend\zend_variables.c(106) : Actual location (location was
relayed)
Last leak repeated 1 time

i took alook at the code..

here is where it creates the memory
tmp = *function_name;
zval_copy_ctor(&tmp);


here shoud be the delete..
zval_dtor(&tmp);
EX(fbc) = function;
overloaded_function_call_cont:
FREE_OP(EX(Ts), &EX(opline)->op2, EG(free_op2));

but as you see the goto overloaded_function_call_cont; 
skips the free.

Patch is supplied

_brad_



__
Do You Yahoo!?
Yahoo! Health - your guide to health and wellness
http://health.yahoo.com

--- zend_execute_cvs.c  Wed May  1 19:22:11 2002
+++ zend_execute.c  Wed May  1 19:22:53 2002
@@ -1563,9 +1563,9 @@
if (zend_hash_find(active_function_table, 
function_name->value.str.val, function_name->value.str.len+1, (void **) 
&function)==FAILURE) {
zend_error(E_ERROR, "Call to undefined 
function:  %s()", function_name->value.str.val);
}
-   zval_dtor(&tmp);
EX(fbc) = function;
 overloaded_function_call_cont:
+   zval_dtor(&tmp);
FREE_OP(EX(Ts), &EX(opline)->op2, 
EG(free_op2));
}
NEXT_OPCODE();



-- 
PHP Development Mailing List 
To unsubscribe, visit: http://www.php.net/unsub.php