Re: [PHP-DEV] older snaps / get_object_vars

2003-11-23 Thread Derick Rethans
On Sun, 23 Nov 2003, John Huntjens wrote: > I dont have a cvs account? You can use anonoymous cvs: http://php.net/anoncvs.php Derick -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] older snaps / get_object_vars

2003-11-23 Thread John Huntjens
I dont have a cvs account? TIA JOhn -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Using do_alloca() instead of emalloc()

2003-11-23 Thread Marcus Boerger
Hello Andi, Sunday, November 23, 2003, 1:56:20 PM, you wrote: > Commited thanks. > Marcus, what we meant was that you shouldn't use do_alloca() in the engine > except for in the cases I mentioned, and possibly cases where the > allocations would be quite large. In the case of reflection API the

Re: [PHP-DEV] [PATCH] Streams "file://" bug

2003-11-23 Thread Andi Gutmans
:) At 12:34 PM 11/23/2003 -0200, Cristiano Duarte wrote: Andi Gutmans wrote: This should be changed to (*path_for_open)++ In fact, it's "(*path_for_open)--" :-) Cristiano Duarte -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php -- PHP Int

Re: [PHP-DEV] [PATCH] Streams "file://" bug

2003-11-23 Thread Cristiano Duarte
Andi Gutmans wrote: This should be changed to (*path_for_open)++ In fact, it's "(*path_for_open)--" :-) Cristiano Duarte -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: [PATCH] Streams "file://" bug

2003-11-23 Thread Cristiano Duarte
Sara Golemon wrote: Predecremet vs. postdecrement would make no difference in that context. It's very likely your compiler. What specific error are you seeing? The compiler is decrementing a char** pointer instead of a char* pointer. P.S. - What's with the ZendEngine1 reference? main/streams/str

Re: [PHP-DEV] Using do_alloca() instead of emalloc()

2003-11-23 Thread Andi Gutmans
Commited thanks. Marcus, what we meant was that you shouldn't use do_alloca() in the engine except for in the cases I mentioned, and possibly cases where the allocations would be quite large. In the case of reflection API the allocations are small *and* the function returns right away, thus not

Re: [PHP-DEV] [PATCH] Streams "file://" bug

2003-11-23 Thread Andi Gutmans
At 10:40 PM 11/22/2003 -0200, Cristiano Duarte wrote: Hi all, The current implementation of file:// support under main/streams/strems.c has a little bug. Maybe it's my gcc 3.2.2 compiler... I don't know... Anyway, the attached patch fixes it. Best Regards, Cristiano Duarte ? php-src/ZendEngine

[PHP-DEV] Cannot build ext/mysql together with ext/mysqli and sapi/apache2handler

2003-11-23 Thread Sebastian Bergmann
Building ext/mysql and ext/mysqli together works okay when building only the sapi/cli, but fails when building sapi/apache2handler: http://www.sebastian-bergmann.de/stuff/mysql-mysqli-good.txt http://www.sebastian-bergmann.de/stuff/mysql-mysqli-bad.txt -- Sebastian Bergmann http://se

Re: [PHP-DEV] HEAD b0rked

2003-11-23 Thread Sebastian Bergmann
Sebastian Bergmann wrote: > conflicts: 21 shift/reduce, 15 reduce/reduce I get this same message with bison 1.75 only that this version does not abort. Maybe some bison parameter(s) changed? -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ D

Re: [PHP-DEV] SimpleXML XPath Namespace Support

2003-11-23 Thread Adam Maccabee Trachtenberg
On Sat, 22 Nov 2003, Rob Richards wrote: > But xpath isn't shared across the objects, so calling > simplexml_ce_register_ns with different sxe objects will result in > multiple XPath contexts each having their own registered namespaces Ah. I see. Okay, I've prepared a modified patch that defers n