summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/interop_subtitle_asset.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interop_subtitle_asset.cc b/src/interop_subtitle_asset.cc
index 32c3f66a..253a0498 100644
--- a/src/interop_subtitle_asset.cc
+++ b/src/interop_subtitle_asset.cc
@@ -73,7 +73,7 @@ using namespace dcp;
InteropSubtitleAsset::InteropSubtitleAsset (boost::filesystem::path file)
: SubtitleAsset (file)
{
- _raw_xml = dcp::file_to_string (file);
+ _raw_xml = dcp::file_to_string(file, 10 * 1024 * 1024);
auto xml = make_shared<cxml::Document>("DCSubtitle");
xml->read_file(dcp::filesystem::fix_long_path(file));