[PHP-CVS] com php-src: Fixed uninitialized EX(call)->called_scope: Zend/zend_vm_def.h Zend/zend_vm_execute.h

2012-12-14 Thread Dmitry Stogov
Commit:e65b966aac8af19cc7b7dd3bf68639b869a66f99 Author:Dmitry Stogov Fri, 14 Dec 2012 12:10:29 +0400 Parents: 5aabf243bfabc6f381523f2eb7f1f3bd035b24cd Branches: PHP-5.5 master Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=e65b966aac8af19cc7b7dd3bf68639b869a66f9

[PHP-CVS] com php-src: Add test for bug #63741: Zend/tests/bug63741.phpt

2012-12-14 Thread Xinchen Hui
Commit:a4678099a15fcf894ff2d5f6dae0bd4d98bcec47 Author:Xinchen Hui Fri, 14 Dec 2012 16:51:34 +0800 Parents: ec4ff0741548d98707cfec7012fcae8e4b6f7403 Branches: master Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=a4678099a15fcf894ff2d5f6dae0bd4d98bcec47 Log: Ad

[PHP-CVS] com php-src: Add test for bug #63741: Zend/tests/bug63741.phpt

2012-12-14 Thread Xinchen Hui
Commit:359d91a80756cd9a9ce945c0e3aa1d2038633e7a Author:Xinchen Hui Fri, 14 Dec 2012 16:52:56 +0800 Parents: e65b966aac8af19cc7b7dd3bf68639b869a66f99 Branches: PHP-5.5 Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=359d91a80756cd9a9ce945c0e3aa1d2038633e7a Log: A

[PHP-CVS] com php-src: Fixed warning of no return in non-void funciton: Zend/zend_vm_def.h Zend/zend_vm_execute.h Zend/zend_vm_gen.php

2012-12-14 Thread Xinchen Hui
Commit:9fb5cfdeb1f13f2e3ab3751494cdd366bc78cb38 Author:Xinchen Hui Fri, 14 Dec 2012 17:21:43 +0800 Parents: 359d91a80756cd9a9ce945c0e3aa1d2038633e7a Branches: PHP-5.5 Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=9fb5cfdeb1f13f2e3ab3751494cdd366bc78cb38 Log: F

[PHP-CVS] com php-src: Fix warning of no return in non-void function: Zend/zend_generators.c

2012-12-14 Thread Xinchen Hui
Commit:a73a6be76417571e7e4a467e8d9c7f82e8a45a9c Author:Xinchen Hui Fri, 14 Dec 2012 17:26:42 +0800 Parents: 9fb5cfdeb1f13f2e3ab3751494cdd366bc78cb38 Branches: PHP-5.5 Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=a73a6be76417571e7e4a467e8d9c7f82e8a45a9c Log: F

Re: [PHP-CVS] com php-src: Fixed warning of no return in non-void funciton: Zend/zend_vm_def.h Zend/zend_vm_execute.h Zend/zend_vm_gen.php

2012-12-14 Thread Stas Malyshev
Hi! > Commit:9fb5cfdeb1f13f2e3ab3751494cdd366bc78cb38 > Author:Xinchen Hui Fri, 14 Dec 2012 17:21:43 > +0800 > Parents: 359d91a80756cd9a9ce945c0e3aa1d2038633e7a > Branches: PHP-5.5 > > Link: > http://git.php.net/?p=php-src.git;a=commitdiff;h=9fb5cfdeb1f13f2e3ab3751494c

Re: [PHP-CVS] com php-src: Fixed warning of no return in non-void funciton: Zend/zend_vm_def.h Zend/zend_vm_execute.h Zend/zend_vm_gen.php

2012-12-14 Thread Laruence
Zend/zend_generators.c:734: warning: control reaches end of non-void function yes it's nothing difference , just make the compiler happy thanks On Fri, Dec 14, 2012 at 5:35 PM, Stas Malyshev wrote: > Hi! > >> Commit:9fb5cfdeb1f13f2e3ab3751494cdd366bc78cb38 >> Author:Xinchen Hui

Re: [PHP-CVS] com php-src: Fixed warning of no return in non-void funciton: Zend/zend_vm_def.h Zend/zend_vm_execute.h Zend/zend_vm_gen.php

2012-12-14 Thread Stas Malyshev
Hi! > Zend/zend_generators.c:734: warning: control reaches end of non-void function > > yes it's nothing difference , just make the compiler happy zend_error_noreturn already supposed to do that. Why it does not do it in your case? Which compiler do you use? -- Stanislav Malyshev, Software Arc

Re: [PHP-CVS] com php-src: Fixed warning of no return in non-void funciton: Zend/zend_vm_def.h Zend/zend_vm_execute.h Zend/zend_vm_gen.php

2012-12-14 Thread Pierre Joye
On Fri, Dec 14, 2012 at 10:40 AM, Stas Malyshev wrote: > Hi! > >> Zend/zend_generators.c:734: warning: control reaches end of non-void function >> >> yes it's nothing difference , just make the compiler happy > > zend_error_noreturn already supposed to do that. Why it does not do it > in your case

Re: [PHP-CVS] com php-src: Fixed warning of no return in non-void funciton: Zend/zend_vm_def.h Zend/zend_vm_execute.h Zend/zend_vm_gen.php

2012-12-14 Thread Stas Malyshev
Hi! > a couple of compilers or analyzers are confused by this macro, not > sure why, but reducing the noises at no cost help to get a better view > in future checks. There is a cost - now we have both zend_error_noreturn and return statements, which is unneeded. If we say zend_error_noreturn does

Re: [PHP-CVS] com php-src: Fixed warning of no return in non-void funciton: Zend/zend_vm_def.h Zend/zend_vm_execute.h Zend/zend_vm_gen.php

2012-12-14 Thread Laruence
On Fri, Dec 14, 2012 at 5:40 PM, Stas Malyshev wrote: > Hi! > >> Zend/zend_generators.c:734: warning: control reaches end of non-void function >> >> yes it's nothing difference , just make the compiler happy > > zend_error_noreturn already supposed to do that. Why it does not do it > in your case?

[PHP-CVS] com php-src: update test for supported Mime Types checking: sapi/cli/tests/bug61977.phpt

2012-12-14 Thread Lars Strojny
Commit:d813af06187c42d89b68d49ba1acf0c207026e8f Author:pascalc Tue, 11 Dec 2012 16:05:12 +0100 Committer: Lars Strojny Fri, 14 Dec 2012 13:59:06 +0100 Parents: e5b1ebc082416330cd6f6b8f457d825aab2674eb Branches: PHP-5.4 Link: http://git.php.net/?p=php-src.git;a=com

[PHP-CVS] com php-src: News entry for updated mime types: NEWS

2012-12-14 Thread Lars Strojny
Commit:c3b480323f78cfd756ef59d6ec0c98252fd9b5b3 Author:Lars Strojny Fri, 14 Dec 2012 14:54:38 +0100 Parents: d813af06187c42d89b68d49ba1acf0c207026e8f Branches: PHP-5.4 Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=c3b480323f78cfd756ef59d6ec0c98252fd9b5b3 Log:

[PHP-CVS] com php-src: update list of common Mime Types in PHP development server to support Web audio/video formats (Webm ,and Ogg containers) + have jpeg mime types listed together: sapi/cli/php_cli

2012-12-14 Thread Lars Strojny
Commit:e5b1ebc082416330cd6f6b8f457d825aab2674eb Author:pascalc Tue, 11 Dec 2012 12:45:00 +0100 Committer: Lars Strojny Fri, 14 Dec 2012 13:59:01 +0100 Parents: 77c4b84ac893a6e4824a58d17475149f6a1c2322 Branches: PHP-5.4 Link: http://git.php.net/?p=php-src.git;a=com

[PHP-CVS] com php-src: Merge branch 'PHP-5.4' into PHP-5.5: sapi/cli/php_cli_server.c

2012-12-14 Thread Lars Strojny
Commit:aaa5e42177c2b8eac77ff25b7b4335a1c2b9f214 Author:Lars Strojny Fri, 14 Dec 2012 14:56:25 +0100 Parents: a73a6be76417571e7e4a467e8d9c7f82e8a45a9c c3b480323f78cfd756ef59d6ec0c98252fd9b5b3 Branches: PHP-5.5 Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=aaa5e

[PHP-CVS] svn: /SVNROOT/ global_avail

2012-12-14 Thread Rasmus Lerdorf
rasmus Fri, 14 Dec 2012 16:48:17 + Revision: http://svn.php.net/viewvc?view=revision&revision=328785 Log: Karma Changed paths: U SVNROOT/global_avail Modified: SVNROOT/global_avail === --

Re: [PHP-CVS] com php-src: News entry for updated mime types: NEWS

2012-12-14 Thread Christopher Jones
On 12/14/2012 05:54 AM, Lars Strojny wrote: > +- CLI server > + . Update list of common mime types (Lars, pascalc at gmail dot com) Could you list the new types in the NEWS entry? This would help users (and doc writers) so they don't have to dig thru the code & commits to find out what was adde

[PHP-CVS] svn: /SVNROOT/ global_avail

2012-12-14 Thread Rasmus Lerdorf
rasmus Sat, 15 Dec 2012 04:48:56 + Revision: http://svn.php.net/viewvc?view=revision&revision=328786 Log: karma Changed paths: U SVNROOT/global_avail Modified: SVNROOT/global_avail === --