forked from mia/Aegisub
Shut up clang analyzer warning
This commit is contained in:
parent
e72e183f27
commit
98048c135a
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ TimecodeRange v1_parse_line(std::string const& str) {
|
|||
|
||||
std::istringstream ss(str);
|
||||
TimecodeRange range;
|
||||
char comma1, comma2;
|
||||
char comma1 = 0, comma2 = 0;
|
||||
ss >> range.start >> comma1 >> range.end >> comma2 >> range.fps;
|
||||
if (ss.fail() || comma1 != ',' || comma2 != ',' || !ss.eof())
|
||||
throw MalformedLine(str);
|
||||
|
|
Loading…
Reference in a new issue