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.

-- 
  Sebastian Bergmann
  http://sebastian-bergmann.de/                 http://phpOpenTracker.de/

  Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/

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

Reply via email to