[PHP-CVS] cvs: php-src /ext/standard dl.c

2009-01-07 Thread Pierre-Alain Joye
pajoye Wed Jan 7 13:03:37 2009 UTC Modified files: /php-src/ext/standard dl.c Log: - MFB: declaration and impl match http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.128r2=1.129diff_format=u Index: php-src/ext/standard/dl.c diff -u

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2008-05-16 Thread Antony Dovgal
On 16.05.2008 07:11, Felipe Pena wrote: - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, z, filename) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, z/, filename) == FAILURE) { return; } + +

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2008-05-16 Thread Felipe Pena
Em Sex, 2008-05-16 às 11:40 +0400, Antony Dovgal escreveu: On 16.05.2008 07:11, Felipe Pena wrote: - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, z, filename) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, z/, filename) == FAILURE) {

[PHP-CVS] cvs: php-src /ext/standard dl.c dl.h

2008-05-16 Thread Felipe Pena
felipe Fri May 16 12:11:15 2008 UTC Modified files: /php-src/ext/standard dl.c dl.h Log: - Improved fix (used 's' in parameter parsing) http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.126r2=1.127diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/standard dl.c

2008-05-15 Thread Felipe Pena
felipe Fri May 16 03:11:56 2008 UTC Modified files: /php-src/ext/standard dl.c Log: - MFB: Added conversion to string. http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.125r2=1.126diff_format=u Index: php-src/ext/standard/dl.c diff -u

[PHP-CVS] cvs: php-src /ext/standard dl.c

2008-02-28 Thread Dmitry Stogov
dmitry Thu Feb 28 16:59:21 2008 UTC Modified files: /php-src/ext/standard dl.c Log: We don't nave to change request shutdown sequence if dl() was failed http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.124r2=1.125diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/standard dl.c

2007-11-09 Thread Jani Taskinen
janiFri Nov 9 13:49:06 2007 UTC Modified files: /php-src/ext/standard dl.c Log: ws + cs http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.120r2=1.121diff_format=u Index: php-src/ext/standard/dl.c diff -u php-src/ext/standard/dl.c:1.120

[PHP-CVS] cvs: php-src /ext/standard dl.c dl.h /main php_ini.c

2007-11-09 Thread Jani Taskinen
janiFri Nov 9 16:26:55 2007 UTC Modified files: /php-src/ext/standard dl.c dl.h /php-src/main php_ini.c Log: - Allow using full path to load modules using extension directive

[PHP-CVS] cvs: php-src /ext/standard dl.c

2007-09-18 Thread Stanislav Malyshev
stasTue Sep 18 20:21:04 2007 UTC Modified files: /php-src/ext/standard dl.c Log: limit dl() argument length (patch by Christian Hoffmann) http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.116r2=1.117diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/standard dl.c

2007-09-18 Thread Stanislav Malyshev
stasWed Sep 19 00:06:06 2007 UTC Modified files: /php-src/ext/standard dl.c Log: use right variable name http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.117r2=1.118diff_format=u Index: php-src/ext/standard/dl.c diff -u

[PHP-CVS] cvs: php-src /ext/standard dl.c

2007-09-18 Thread Johannes Schl�ter
johannesWed Sep 19 01:08:39 2007 UTC Modified files: /php-src/ext/standard dl.c Log: - Fix build (filename is a zval * here, not a zval** like in 5_2) http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.118r2=1.119diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/standard dl.c

2007-09-13 Thread Jani Taskinen
janiThu Sep 13 07:41:59 2007 UTC Modified files: /php-src/ext/standard dl.c Log: cs/ws fix http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.115r2=1.116diff_format=u Index: php-src/ext/standard/dl.c diff -u php-src/ext/standard/dl.c:1.115

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2007-09-13 Thread Marcus Boerger
Hello Stanislav, Thursday, September 13, 2007, 3:16:24 AM, you wrote: stasThu Sep 13 01:16:24 2007 UTC Modified files: /php-src/ext/standard dl.c Log: MFB: docs say dl() parameter can be filename only - enforce it

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2007-09-13 Thread Stanislav Malyshev
Wouldn't something with strcspn and a string build form '/' and DEFAULT_SLASH be faster? Not sure. I would rather use strpbrk, though I'm not sure how easy is to actually build that string from macros. But dl() is anyway not the shining star of performance, so saving a dozen of CPU cycles

[PHP-CVS] cvs: php-src /ext/standard dl.c

2007-09-12 Thread Stanislav Malyshev
stasThu Sep 13 01:16:24 2007 UTC Modified files: /php-src/ext/standard dl.c Log: MFB: docs say dl() parameter can be filename only - enforce it http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.114r2=1.115diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/standard dl.c

2007-05-29 Thread Antony Dovgal
tony2001Tue May 29 21:24:45 2007 UTC Modified files: /php-src/ext/standard dl.c Log: more typofixes http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.113r2=1.114diff_format=u Index: php-src/ext/standard/dl.c diff -u

[PHP-CVS] cvs: php-src /ext/standard dl.c

2006-12-08 Thread Andrei Zmievski
andrei Fri Dec 8 19:13:51 2006 UTC Modified files: /php-src/ext/standard dl.c Log: Unicode filename support in dl(). http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.110r2=1.111diff_format=u Index: php-src/ext/standard/dl.c diff -u

[PHP-CVS] cvs: php-src /ext/standard dl.c dl.h /main php_ini.c /sapi/cli php_cli.c

2005-08-08 Thread Jani Taskinen
sniper Mon Aug 8 12:49:45 2005 EDT Modified files: /php-src/ext/standard dl.c dl.h /php-src/main php_ini.c /php-src/sapi/cli php_cli.c Log: - Fixed problem with -dextension=foobar.so not having it's MINIT run.

[PHP-CVS] cvs: php-src /ext/standard dl.c /main main.c

2005-07-18 Thread Dmitry Stogov
dmitry Mon Jul 18 12:20:08 2005 EDT Modified files: /php-src/main main.c /php-src/ext/standard dl.c Log: Fixed bug in new module statrup mechanism http://cvs.php.net/diff.php/php-src/main/main.c?r1=1.637r2=1.638ty=u Index:

[PHP-CVS] cvs: php-src /ext/standard dl.c

2005-06-30 Thread Dmitry Stogov
dmitry Thu Jun 30 09:43:00 2005 EDT Modified files: /php-src/ext/standard dl.c Log: Restored old behavior of zend_statup_module() http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.101r2=1.102ty=u Index: php-src/ext/standard/dl.c diff -u

[PHP-CVS] cvs: php-src /ext/standard dl.c

2005-06-16 Thread Wez Furlong
wez Thu Jun 16 11:36:40 2005 EDT Modified files: /php-src/ext/standard dl.c Log: Don't emit the E_STRICT dl-is-deprecated notice on SAPI's where dl() is widely (and safely) used. This allows our test-suite to run in E_STRICT mode.

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2005-06-16 Thread Derick Rethans
On Thu, 16 Jun 2005, Wez Furlong wrote: wez Thu Jun 16 11:36:40 2005 EDT Modified files: /php-src/ext/standard dl.c Log: Don't emit the E_STRICT dl-is-deprecated notice on SAPI's where dl() is widely (and safely) used. This allows our test-suite

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2005-06-16 Thread Wez Furlong
The PDO tests; Cc'd to the PDO test gurus. --Wez. Derick Rethans wrote: On Thu, 16 Jun 2005, Wez Furlong wrote: wez Thu Jun 16 11:36:40 2005 EDT Modified files: /php-src/ext/standard dl.c Log: Don't emit the E_STRICT dl-is-deprecated notice on SAPI's where

[PHP-CVS] cvs: php-src /ext/standard dl.c

2005-05-04 Thread Anantha Kesari H Y
hyanantha Wed May 4 09:26:28 2005 EDT Modified files: /php-src/ext/standard dl.c Log: NetWare LibC dlsym works perfectly only thing that each of the extension need to export a symbol with FULL capital prefix.

[PHP-CVS] cvs: php-src /ext/standard dl.c

2004-07-20 Thread Marcus Boerger
helly Tue Jul 20 15:23:55 2004 EDT Modified files: /php-src/ext/standard dl.c Log: - Need to set handle prior to calling zend_register_module_ex() (Marcus, Kamesh Jayachandran kameshj at fastmail dot fm)

[PHP-CVS] cvs: php-src /ext/standard dl.c

2004-07-06 Thread Marcus Boerger
helly Tue Jul 6 14:48:39 2004 EDT Modified files: /php-src/ext/standard dl.c Log: - Revert storing handle, got lost in 1.92, noticed by Kamesh Jayachandran kameshj at fastmail dot fm

[PHP-CVS] cvs: php-src /ext/standard dl.c

2004-05-25 Thread Wez Furlong
wez Tue May 25 09:25:22 2004 EDT Modified files: /php-src/ext/standard dl.c Log: Merge that nicer error message here too http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.93r2=1.94ty=u Index: php-src/ext/standard/dl.c diff -u

[PHP-CVS] cvs: php-src /ext/standard dl.c

2004-05-21 Thread Wez Furlong
wez Fri May 21 13:08:36 2004 EDT Modified files: /php-src/ext/standard dl.c Log: Update to reflect recent changes in dl() http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.91r2=1.92ty=u Index: php-src/ext/standard/dl.c diff -u

[PHP-CVS] cvs: php-src /ext/standard dl.c

2004-05-21 Thread Wez Furlong
wez Fri May 21 13:17:55 2004 EDT Modified files: /php-src/ext/standard dl.c Log: Ok, so we do need to rinit here after all. http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.92r2=1.93ty=u Index: php-src/ext/standard/dl.c diff -u

[PHP-CVS] cvs: php-src /ext/standard dl.c

2004-05-18 Thread Wez Furlong
wez Tue May 18 11:26:32 2004 EDT Modified files: /php-src/ext/standard dl.c Log: Fix dl() and extension= http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.89r2=1.90ty=u Index: php-src/ext/standard/dl.c diff -u

[PHP-CVS] cvs: php-src /ext/standard dl.c

2004-05-18 Thread Stanislav Malyshev
stasTue May 18 12:13:58 2004 EDT Modified files: /php-src/ext/standard dl.c Log: Z_TYPE_P is for zvals http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.90r2=1.91ty=u Index: php-src/ext/standard/dl.c diff -u php-src/ext/standard/dl.c:1.90

[PHP-CVS] cvs: php-src /ext/standard dl.c

2004-05-01 Thread Marcus Boerger
helly Sat May 1 16:34:15 2004 EDT Modified files: /php-src/ext/standard dl.c Log: Don't load modules twice http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.88r2=1.89ty=u Index: php-src/ext/standard/dl.c diff -u php-src/ext/standard/dl.c:1.88

[PHP-CVS] cvs: php-src /ext/standard dl.c

2004-02-14 Thread Jan Lehnardt
jan Sat Feb 14 14:02:23 2004 EDT Modified files: /php-src/ext/standard dl.c Log: - improve error message http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.87r2=1.88ty=u Index: php-src/ext/standard/dl.c diff -u

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2004-02-14 Thread Pierre-Alain Joye
On Sat, 14 Feb 2004 19:02:23 - Jan Lehnardt [EMAIL PROTECTED] wrote: Modified files: /php-src/ext/standard dl.c Log: - improve error message The best way to improve it is to remove it ;) pierre -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2004-02-14 Thread Jan Lehnardt
Hi Pierre On 14 Feb 2004, at 20:03, Pierre-Alain Joye wrote: The best way to improve it is to remove it ;) ranting helps. Please see internals, this is unrelated to the discussion. Jan -- -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2004-02-14 Thread Jan Lehnardt
Hi, On 11 Feb 2004, at 12:46, Zeev Suraski wrote: + zend_error(E_STRICT, dl() is deprecated - use extension= in your php.ini); unrelated to the ongoing discussion, wouldn't it make sense to show the module's name in the error message? Something like: zend_error(E_STRICT, dl() is deprecated

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2004-02-14 Thread Andi Gutmans
At 06:54 PM 2/14/2004 +0100, Jan Lehnardt wrote: Hi, On 11 Feb 2004, at 12:46, Zeev Suraski wrote: + zend_error(E_STRICT, dl() is deprecated - use extension= in your php.ini); unrelated to the ongoing discussion, wouldn't it make sense to show the module's name in the error message?

[PHP-CVS] cvs: php-src /ext/standard dl.c

2004-02-11 Thread Zeev Suraski
zeevWed Feb 11 06:46:21 2004 EDT Modified files: /php-src/ext/standard dl.c Log: Finally add a notice to hint people that using dl() is a bad idea... http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.86r2=1.87ty=u Index:

[PHP-CVS] cvs: php-src /ext/standard dl.c /win32 winutil.c

2003-12-17 Thread Marcus Boerger
helly Wed Dec 17 06:20:36 2003 EDT Modified files: /php-src/ext/standard dl.c /php-src/win32 winutil.c Log: Fix a memleak: A second call to *nix version of dlerror() frees the error string. This behavior is also adapted to the win build so that

[PHP-CVS] cvs: php-src /ext/standard dl.c

2003-08-17 Thread David Croft
david Sun Aug 17 05:57:21 2003 EDT Modified files: /php-src/ext/standard dl.c Log: #typo Index: php-src/ext/standard/dl.c diff -u php-src/ext/standard/dl.c:1.83 php-src/ext/standard/dl.c:1.84 --- php-src/ext/standard/dl.c:1.83 Tue Jun 10