Hi,
FYI the php.net SSL certificate has expired :
wiki.php.net uses an invalid security certificate. The certificate
expired on 03/06/2016 01:59. The current time is 03/06/2016 04:48.
Regards
Pascal
Hi,
Years ago I reported what I thought should be fairly simple to resolve.
The issue number (below) is that now the zend code goes through the
following logic
test 1
#define restrict restrict
later test #2
define restrict
And always:
#define restrict restrict
In this case: test #1 is done by the OS include files, and test#2 and the final
assignment are done in zend*.h (was zend.h, now zend_portability.h)
As I do not really know the importance of the restrict and/or restrict
keywords, maybe this is less important than spilled milk.
My idea for a patch was to not do test 2 if restrict was already defined.
However, what is the value, or sense of the result - which would be:
#define restrict restrict
#define restrict restrict
It feels like a bug - it certainly confuses me.
M