diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-02-08 14:56:02 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-02-08 14:58:06 +0000 |
| commit | d2f25b8f41d05ca22ab41b1a1a79fe58a9d4adff (patch) | |
| tree | ad4e431ca70dcec6f2e4290b1e20356d0b5a98b7 /src | |
| parent | ea5586e8fb1967ee4ed83b7c2ffff92333ca7cb9 (diff) | |
Fix uninitialised variable.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/j2k_image_proxy.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/j2k_image_proxy.cc b/src/lib/j2k_image_proxy.cc index c4d38e623..d9cb79cad 100644 --- a/src/lib/j2k_image_proxy.cc +++ b/src/lib/j2k_image_proxy.cc @@ -38,6 +38,7 @@ using boost::optional; J2KImageProxy::J2KImageProxy (boost::filesystem::path path, dcp::Size size) : _mono (new dcp::MonoPictureFrame (path)) , _size (size) + , _eye (EYE_BOTH) { } @@ -45,6 +46,7 @@ J2KImageProxy::J2KImageProxy (boost::filesystem::path path, dcp::Size size) J2KImageProxy::J2KImageProxy (shared_ptr<const dcp::MonoPictureFrame> frame, dcp::Size size) : _mono (frame) , _size (size) + , _eye (EYE_BOTH) { } |
