summaryrefslogtreecommitdiff
path: root/src/libcamera/v4l2_device.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcamera/v4l2_device.cpp')
-rw-r--r--src/libcamera/v4l2_device.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libcamera/v4l2_device.cpp b/src/libcamera/v4l2_device.cpp
index 0d4d60f5..b86a6295 100644
--- a/src/libcamera/v4l2_device.cpp
+++ b/src/libcamera/v4l2_device.cpp
@@ -299,7 +299,7 @@ int V4L2Device::setFormat(V4L2DeviceFormat *format)
int V4L2Device::getFormatSingleplane(V4L2DeviceFormat *format)
{
- struct v4l2_format v4l2Format;
+ struct v4l2_format v4l2Format = {};
struct v4l2_pix_format *pix = &v4l2Format.fmt.pix;
int ret;
@@ -323,7 +323,7 @@ int V4L2Device::getFormatSingleplane(V4L2DeviceFormat *format)
int V4L2Device::setFormatSingleplane(V4L2DeviceFormat *format)
{
- struct v4l2_format v4l2Format;
+ struct v4l2_format v4l2Format = {};
struct v4l2_pix_format *pix = &v4l2Format.fmt.pix;
int ret;
@@ -344,7 +344,7 @@ int V4L2Device::setFormatSingleplane(V4L2DeviceFormat *format)
int V4L2Device::getFormatMultiplane(V4L2DeviceFormat *format)
{
- struct v4l2_format v4l2Format;
+ struct v4l2_format v4l2Format = {};
struct v4l2_pix_format_mplane *pix = &v4l2Format.fmt.pix_mp;
int ret;
@@ -371,7 +371,7 @@ int V4L2Device::getFormatMultiplane(V4L2DeviceFormat *format)
int V4L2Device::setFormatMultiplane(V4L2DeviceFormat *format)
{
- struct v4l2_format v4l2Format;
+ struct v4l2_format v4l2Format = {};
struct v4l2_pix_format_mplane *pix = &v4l2Format.fmt.pix_mp;
int ret;