summaryrefslogtreecommitdiffstats
path: root/Source/cmFileCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2022-09-21 14:12:02 (GMT)
committerKitware Robot <kwrobot@kitware.com>2022-09-21 14:12:11 (GMT)
commitef1d34b20d88e99de7a8e2f93feb247332cdafda (patch)
tree0d86f4245193d71fbd1d1d14f7a3816f83e5e613 /Source/cmFileCommand.cxx
parenta50346c1d0ebf355ba27177817bc4b45259b0810 (diff)
parent8fc822e13a8bf8695e475655f647d5d69f99c414 (diff)
downloadCMake-ef1d34b20d88e99de7a8e2f93feb247332cdafda.zip
CMake-ef1d34b20d88e99de7a8e2f93feb247332cdafda.tar.gz
CMake-ef1d34b20d88e99de7a8e2f93feb247332cdafda.tar.bz2
Merge topic 'parse-large-int'
8fc822e13a file: Avoid strange istringstream crash in cmake.org binaries on Alpine Linux 31f158e4c8 cmStringAlgorithms: Add functions to parse strings to long long integers Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !7698
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r--Source/cmFileCommand.cxx10
1 files changed, 8 insertions, 2 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx
index 7810040..bec9fb2 100644
--- a/Source/cmFileCommand.cxx
+++ b/Source/cmFileCommand.cxx
@@ -201,13 +201,19 @@ bool HandleReadCommand(std::vector<std::string> const& args,
// is there a limit?
std::string::size_type sizeLimit = std::string::npos;
if (!arguments.Limit.empty()) {
- std::istringstream(arguments.Limit) >> sizeLimit;
+ unsigned long long limit;
+ if (cmStrToULongLong(arguments.Limit, &limit)) {
+ sizeLimit = static_cast<std::string::size_type>(limit);
+ }
}
// is there an offset?
cmsys::ifstream::off_type offset = 0;
if (!arguments.Offset.empty()) {
- std::istringstream(arguments.Offset) >> offset;
+ long long off;
+ if (cmStrToLongLong(arguments.Offset, &off)) {
+ offset = static_cast<cmsys::ifstream::off_type>(off);
+ }
}
file.seekg(offset, std::ios::beg); // explicit ios::beg for IBM VisualAge 6