From 9f607765bccdb6f304dddb6868aac8f488b4763f Mon Sep 17 00:00:00 2001 From: thunder2 Date: Sat, 19 Jul 2025 14:51:33 +0200 Subject: [PATCH] Fixed crash in VOIP by initializing member _image_capture in constructor of QVideoInputDevice --- plugins/VOIP/gui/QVideoDevice.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/VOIP/gui/QVideoDevice.cpp b/plugins/VOIP/gui/QVideoDevice.cpp index 51e3a83bf..fb81b84e2 100644 --- a/plugins/VOIP/gui/QVideoDevice.cpp +++ b/plugins/VOIP/gui/QVideoDevice.cpp @@ -37,6 +37,7 @@ QVideoInputDevice::QVideoInputDevice(QWidget *parent) _capture_device = NULL ; _video_processor = NULL ; _echo_output_device = NULL ; + _image_capture = NULL; } QVideoInputDevice::~QVideoInputDevice()