mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
master renames phase 1
This commit is contained in:
parent
0cf2dbdf58
commit
c3e3c98ec6
486 changed files with 11459 additions and 11541 deletions
|
@ -52,9 +52,9 @@ zend_string
|
|||
/* Allocate the string memory. */
|
||||
signch = ( num->n_sign == PLUS ? 0 : 1 ); /* Number of sign chars. */
|
||||
if (num->n_scale > 0)
|
||||
str = STR_ALLOC(num->n_len + num->n_scale + signch + 1, 0);
|
||||
str = zend_string_alloc(num->n_len + num->n_scale + signch + 1, 0);
|
||||
else
|
||||
str = STR_ALLOC(num->n_len + signch, 0);
|
||||
str = zend_string_alloc(num->n_len + signch, 0);
|
||||
if (str == NULL) bc_out_of_memory();
|
||||
|
||||
/* The negative sign if needed. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue