[vlc-commits] [Git][videolan/vlc][master] qt: fix potential use after free
Jean-Baptiste Kempf (@jbk)
gitlab at videolan.org
Sat Nov 5 15:28:40 UTC 2022
Jean-Baptiste Kempf pushed to branch master at VideoLAN / VLC
Commits:
91d69ce6 by Fatih Uzunoglu at 2022-11-05T15:16:40+00:00
qt: fix potential use after free
- - - - -
1 changed file:
- modules/gui/qt/util/color_svg_image_provider.cpp
Changes:
=====================================
modules/gui/qt/util/color_svg_image_provider.cpp
=====================================
@@ -168,7 +168,7 @@ public:
}
void cancel() override {
- m_reader->abandon();
+ m_reader.reset();
emit finished();
}
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/91d69ce6dcb6fd324ac6b974b95aa5945fa4a794
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/91d69ce6dcb6fd324ac6b974b95aa5945fa4a794
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list