Fixes String(float) issue with Stack Smashing (#6138)

Fixes #5873
This commit is contained in:
Rodrigo Garcia
2022-01-17 09:44:49 -03:00
committed by GitHub
parent caef4006af
commit 841599c248
4 changed files with 23 additions and 11 deletions

View File

@ -39,7 +39,7 @@ char* utoa (unsigned int val, char *s, int radix);
char* ultoa (unsigned long val, char *s, int radix);
char* dtostrf (double val, signed char width, unsigned char prec, char *s);
char* dtostrf (double val, signed int width, unsigned int prec, char *s);
#ifdef __cplusplus
} // extern "C"