summaryrefslogtreecommitdiff
path: root/src/lib/content_video.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-05-27 10:21:46 +0100
committerCarl Hetherington <cth@carlh.net>2015-05-27 10:21:46 +0100
commit0a20f4b0ee59f06732648f981fe4d3e387b5705a (patch)
tree896bcb730b4985186597d854cadd18fa712d4ea6 /src/lib/content_video.h
parent387304bc9147933b68eda2b38ba8cac0d250e87e (diff)
Fix some uninitialised variables.
Diffstat (limited to 'src/lib/content_video.h')
-rw-r--r--src/lib/content_video.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/content_video.h b/src/lib/content_video.h
index cdf0f9cdd..c8f5cca0b 100644
--- a/src/lib/content_video.h
+++ b/src/lib/content_video.h
@@ -31,6 +31,7 @@ public:
ContentVideo ()
: eyes (EYES_BOTH)
, part (PART_WHOLE)
+ , frame (0)
{}
ContentVideo (boost::shared_ptr<const ImageProxy> i, Eyes e, Part p, Frame f)