"Sara Golemon" <[EMAIL PROTECTED]> wrote:
> -                             result = *subject_entry;
> +                             MAKE_STD_ZVAL(result);
> +                             SEPARATE_ZVAL(subject_entry);
> +                             *result = **subject_entry;
> +                             zval_copy_ctor(result);

Couldn't this be more simpler with a single SEPARATE_ZVAL()? like

        result = *subject_entry;
        SEPARATE_ZVAL(result);

Moriyoshi

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

Reply via email to