summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-07-15 00:03:01 +0100
committerCarl Hetherington <cth@carlh.net>2018-07-15 00:03:01 +0100
commit13a4ee8b1e0d39d94b41e72cc1631dee4f900694 (patch)
treee4af9f1e9b4b6f117a5a39ec9cb9b58355f5f953 /src
parent5ec4e162688117a7a41d649984a507def30dc689 (diff)
Fix thinko causing hang in ::equals().
Diffstat (limited to 'src')
-rw-r--r--src/subtitle_asset.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/subtitle_asset.cc b/src/subtitle_asset.cc
index 31cb30c9..880c3120 100644
--- a/src/subtitle_asset.cc
+++ b/src/subtitle_asset.cc
@@ -479,6 +479,9 @@ SubtitleAsset::equals (shared_ptr<const Asset> other_asset, EqualityOptions opti
note (DCP_ERROR, "subtitles differ");
return false;
}
+
+ ++i;
+ ++j;
}
return true;