See tail of http://snaps.php.net/win32/snapshot-5.2.log
As such, the last successful build was Aug 27, 2006 18:30 GMT
--
Richard Quadling
Zend Certified Engineer : http://zend.com/zce.php?c=ZEND002498&r=213474731
"Standing on the shoulders of some very clever giants!"
Its due to Ilia's patch in string.c which contains the following line:
char stmp[MAX_LENGTH_OF_DOUBLE + EG(precision) + 1];
Edin
Richard Quadling wrote:
See tail of http://snaps.php.net/win32/snapshot-5.2.log
As such, the last successful build was Aug 27, 2006 18:30 GMT
Would
char *stmp;
stmp = emalloc(MAX_LENGTH_OF_DOUBLE + EG(precision) + 1);
be a better solution?
As seen in zend_exceptions.c Line 443.
Its due to Ilia's patch in string.c which contains the following line:
char stmp[MAX_LENGTH_OF_DOUBLE + EG(precision) + 1];
Edin
Richard Quadling wrote:
See tail of http://snaps.php.net/win32/snapshot-5.2.log
As such, the last successful build was Aug 27, 2006 18:30 GMT
--
Richard Quadling
Zend Certified Engineer : http://zend.com/zce.php?c=ZEND002498&r=213474731
"Standing on the shoulders of some very clever giants!"
Yes, Tony already committed that.
Edin
Richard Quadling wrote:
Would
char *stmp;
stmp = emalloc(MAX_LENGTH_OF_DOUBLE + EG(precision) + 1);be a better solution?
As seen in zend_exceptions.c Line 443.
Its due to Ilia's patch in string.c which contains the following line:
char stmp[MAX_LENGTH_OF_DOUBLE + EG(precision) + 1];
Edin
Richard Quadling wrote:
See tail of http://snaps.php.net/win32/snapshot-5.2.log
As such, the last successful build was Aug 27, 2006 18:30 GMT