[vlc-commits] [Git][videolan/vlc][master] qt: fix uninitialized pointer access
Jean-Baptiste Kempf (@jbk)
gitlab at videolan.org
Thu Aug 3 12:41:20 UTC 2023
Jean-Baptiste Kempf pushed to branch master at VideoLAN / VLC
Commits:
7e3d0c9c by Fatih Uzunoglu at 2023-08-03T12:12:03+00:00
qt: fix uninitialized pointer access
- - - - -
1 changed file:
- modules/gui/qt/player/player_controller.hpp
Changes:
=====================================
modules/gui/qt/player/player_controller.hpp
=====================================
@@ -489,7 +489,7 @@ private:
QSignalMapper *menusAudioMapper; //used by VLCMenuBar
/* updateArt gui request */
- struct vlc_metadata_cbs input_preparser_cbs;
+ struct vlc_metadata_cbs input_preparser_cbs {};
static void onArtFetchEnded_callback(input_item_t *, bool fetched, void *userdata);
void onArtFetchEnded(input_item_t *, bool fetched);
};
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/7e3d0c9c7dfad30977b1e76d76c76662711cfe54
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/7e3d0c9c7dfad30977b1e76d76c76662711cfe54
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