|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2016-03-09 04:17 UTC] laruence@php.net
  [2016-03-09 04:17 UTC] laruence@php.net
 
-Status: Open
+Status: Closed
  [2016-07-20 11:33 UTC] davey@php.net
  [2018-11-23 09:22 UTC] dragondreamer at live dot com
 
-: temp at temp dot ru
+: dragondreamer at live dot com
  [2018-11-23 09:22 UTC] dragondreamer at live dot com
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 00:00:01 2025 UTC | 
Description: ------------ These three function has a flaw that can eventually result in crash: ZEND_API double zend_bin_strtod(const char *str, const char **endptr) { ... if (strlen(str) < 2) { *endptr = str; <--- No check if endptr is NULL, can result in zero pointer dereferencing return 0.0; } ... if (NULL != endptr) { <--- But here this check is present *endptr = (char *)(any ? s - 1 : str); } return value; }