summaryrefslogtreecommitdiff
path: root/src/lib/subrip.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-06-20 10:30:36 +0100
committerCarl Hetherington <cth@carlh.net>2014-06-20 10:30:36 +0100
commit2cdecbe2b56233b009f6edfa13033c6ec9d198bf (patch)
treeb6797e9314b7d6575898cc8cfad2116e46ce3a31 /src/lib/subrip.cc
parent0444ddab72c195d91e422ac659594e6d81fbf938 (diff)
Fix small .srt parsing bug; add a test.
Diffstat (limited to 'src/lib/subrip.cc')
-rw-r--r--src/lib/subrip.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/subrip.cc b/src/lib/subrip.cc
index 3217a4df0..11ad3302d 100644
--- a/src/lib/subrip.cc
+++ b/src/lib/subrip.cc
@@ -66,13 +66,18 @@ SubRip::SubRip (shared_ptr<const SubRipContent> content)
switch (state) {
case COUNTER:
{
+ if (line.empty ()) {
+ /* a blank line at the start is ok */
+ break;
+ }
+
int x = 0;
try {
x = lexical_cast<int> (line);
} catch (...) {
}
-
+
if (x == next_count) {
state = METADATA;
++next_count;