Details
-
Suggestion
-
Resolution: Fixed
-
P2: Important
-
6.5.0
-
None
-
-
d07c27341 (dev), 63fdbe3aa (6.8), 0f76f38ed (6.7), 0f2b5dd25 (tqtc/lts-6.5)
-
Multimedia wk 39-40
Description
In qt/qtmultimedia/examples/multimedia/player/qplaylistfileparser.cpp, there is a line that this.
QIODevice *m_stream;
The pointer is not initialized, so it would be better to initialize the pointer.
QIODevice *m_stream = nullptr;