From dea922bbc1fa2b643140a6b5275e58a1fb0225c9 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 2 Feb 2013 19:40:55 +0000 Subject: Fix erroneous check wrt intrinsic duration. --- src/lib/writer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib') diff --git a/src/lib/writer.cc b/src/lib/writer.cc index a444efad8..5bd32147a 100644 --- a/src/lib/writer.cc +++ b/src/lib/writer.cc @@ -316,7 +316,7 @@ Writer::check_existing_picture_mxf () return; } - while (_first_nonexistant_frame < _film->dcp_intrinsic_duration ()) { + while (1) { /* Read the frame info as written */ ifstream ifi (_film->info_path (_first_nonexistant_frame).c_str()); -- cgit v1.2.3