Anyone added refcount already?
How about this one?

       <?php
       function test($buf) {
         unset($buf);
       }

       ob_start('test');
       ?>

If this works, I suppose someone already fixed it.
One or two bug reports may be closed :)

--
Yasuo Ohgaki


Sebastian Bergmann wrote:
> Yasuo Ohgaki wrote:
> 
>>If you create bug report, I'll fix it when I have time.
> 
> 
>   Hm?
> 
> 
>>Including following bug.
>>
>>For example,
>>
>>      <?php
>>      function test($buf) {
>>        $buf = "ABC';
>>        return $buf;
>>      }
>>
>>      ob_start('test');
>>      ?>
>>
>>segfualts.
> 
> 
>     <?php
>     function test($buf) {
>       $buf = 'ABC';
>       return $buf;
>     }
> 
>     ob_start('test');
>     ?>
> 
>   does not segfault here.
> 



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

Reply via email to