mirror of
https://github.com/Icinga/icinga2.git
synced 2026-06-08 16:26:42 -04:00
parent
08cdb3676d
commit
6482fcec59
1 changed files with 1 additions and 1 deletions
2
third-party/cJSON/cJSON.c
vendored
2
third-party/cJSON/cJSON.c
vendored
|
|
@ -127,7 +127,7 @@ static char *print_number(cJSON *item)
|
|||
}
|
||||
else
|
||||
{
|
||||
str=(char*)cJSON_malloc(64 + (int)log10(d)); /* This is a nice tradeoff. */
|
||||
str=(char*)cJSON_malloc(64 + (int)log10(fabs(d))); /* This is a nice tradeoff. */
|
||||
if (str)
|
||||
{
|
||||
if (d != d) strcpy(str, "0");
|
||||
|
|
|
|||
Loading…
Reference in a new issue