Ok. I got what it is doing.
If you create bug report, I'll fix it when I have time.
Including following bug.

Any access to output buffer will cause problem.
For example,

      <?php
      function test($buf) {
        $buf = "ABC';
        return $buf;
      }

      ob_start('test');
      ?>

segfualts.

--
Yasuo Ohgaki


Sebastian Bergmann wrote:
>   Hi,
> 
>   I think I found the root of my previous segfault:
> 
>     <?php
>     function test() {
>       ob_end_clean();
>     }
>     
>     ob_start('test');
>     ?>
> 
>   segfaults, stacktrace is here
> 
>     http://www.sebastian-bergmann.de/stacktrace.txt
> 



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

Reply via email to