diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-08-22 15:43:43 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-08-22 15:43:43 +0100 |
| commit | 84a270f976b5264b67285ab70efef705b1aa0f00 (patch) | |
| tree | 9dc9639f2dbd52edaa9765eba9ca801f8c4f96cb | |
| parent | 1a3818e1c76321095553c91f846478ca44ffb14d (diff) | |
Should-be-unnecessary initialisation.
| -rw-r--r-- | src/picture_asset.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/picture_asset.cc b/src/picture_asset.cc index 7db85156..3fbc0947 100644 --- a/src/picture_asset.cc +++ b/src/picture_asset.cc @@ -42,6 +42,8 @@ using namespace libdcp; PictureAsset::PictureAsset (string directory, string mxf_name, sigc::signal1<void, float>* progress, int fps, int entry_point, int length) : MXFAsset (directory, mxf_name, progress, fps, entry_point, length) + , _width (0) + , _height (0) { } |
