This commit is contained in:
parent
440d989490
commit
c2d8ef9fe4
@ -2102,9 +2102,8 @@ ReturnValue_t CoreController::initLeapSecondsFromFile() {
|
||||
}
|
||||
iss >> nextWord;
|
||||
uint16_t leapSeconds = 0;
|
||||
size_t checkPtr;
|
||||
leapSeconds = std::stoi(nextWord.c_str(), &checkPtr, 10);
|
||||
if (iss.bad() or checkPtr) {
|
||||
leapSeconds = std::stoi(nextWord.c_str());
|
||||
if (iss.bad()) {
|
||||
return returnvalue::FAILED;
|
||||
}
|
||||
Clock::setLeapSeconds(leapSeconds);
|
||||
|
Loading…
Reference in New Issue
Block a user