]> Cypherpunks.ru repositories - gostls13.git/commit
strconv: avoid panic on invalid call to FormatFloat
authorRémy Oudompheng <remyoudompheng@gmail.com>
Fri, 29 Apr 2022 09:54:13 +0000 (11:54 +0200)
committerGopher Robot <gobot@golang.org>
Fri, 24 Jun 2022 23:50:20 +0000 (23:50 +0000)
commit41e1d9075e428c2fc32d966b3752a3029b620e2c
tree9ffacd1d67f9f80cb87e9a062d818d73a1791acf
parentbd4753905d15035fabbc4dda79573506090fe40b
strconv: avoid panic on invalid call to FormatFloat

Calling FormatFloat with an invalid value of fmt is expected
to return a string containing '%' and the input fmt character.
Since even before Go 1.0, the code has been panicking in the
case where prec=0.

Fixes #52187

Change-Id: I74fec601eedb7fe28efc5132c4253674661452aa
Reviewed-on: https://go-review.googlesource.com/c/go/+/402817
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Emmanuel Odeke <emmanuel@orijtech.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Run-TryBot: Ian Lance Taylor <iant@google.com>
Reviewed-by: Carlos Amedee <carlos@golang.org>
Auto-Submit: Emmanuel Odeke <emmanuel@orijtech.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
src/strconv/ftoa.go
src/strconv/ftoa_test.go