vcl/source/filter/idxf/dxfgrprd.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 5389294d747f8ca3d964f126cab627eb89c4ec91 Author: Julien Nabet <serval2...@yahoo.fr> AuthorDate: Sun Sep 7 22:51:48 2025 +0200 Commit: Xisco Fauli <xiscofa...@libreoffice.org> CommitDate: Wed Sep 10 14:28:59 2025 +0200 Related tdf#168265: fix DXFGroupReader::ReadF Change-Id: I9a316a2b01b7726e679cecb0121e650ee49d6ba3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/190646 Reviewed-by: Julien Nabet <serval2...@yahoo.fr> Tested-by: Jenkins (cherry picked from commit 1d6298f1c64a8ba6c6634335960d2b247d0d2f30) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/190652 Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org> diff --git a/vcl/source/filter/idxf/dxfgrprd.cxx b/vcl/source/filter/idxf/dxfgrprd.cxx index 3319882e3245..a2ab23e6867b 100644 --- a/vcl/source/filter/idxf/dxfgrprd.cxx +++ b/vcl/source/filter/idxf/dxfgrprd.cxx @@ -197,7 +197,7 @@ double DXFGroupReader::ReadF() bStatus=false; return 0.0; } - return atof(p); + return o3tl::toDouble(s); } void DXFGroupReader::ReadS()