Small thinko fix.
authorCarl Hetherington <cth@carlh.net>
Wed, 13 May 2015 21:51:02 +0000 (22:51 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 13 May 2015 21:51:02 +0000 (22:51 +0100)
src/interop_subtitle_content.cc

index 2ba698db1f10e7b3a7b91fac1be9cb6b7f93dd1d..305c3666c1d071920519309f1327cf8e93c2e7cb 100644 (file)
@@ -194,7 +194,7 @@ InteropSubtitleContent::equals (shared_ptr<const Asset> other_asset, EqualityOpt
        list<shared_ptr<InteropLoadFontNode> >::const_iterator j = other->_load_font_nodes.begin ();
 
        while (i != _load_font_nodes.end ()) {
-               if (j == _load_font_nodes.end ()) {
+               if (j == other->_load_font_nodes.end ()) {
                        note (DCP_ERROR, "<LoadFont> nodes differ");
                        return false;
                }