Skip to content
Snippets Groups Projects
Commit 3b3ef1be authored by Frank Bossen's avatar Frank Bossen
Browse files

Merge branch 'fix_gcc14_warning' into 'master'

Fix GCC 14 warning: use of uninitialized variable

See merge request jvet/VVCSoftware_VTM!2759
parents cd4ca456 530c2741
No related branches found
No related tags found
No related merge requests found
......@@ -580,9 +580,8 @@ public:
PayloadType payloadType() const { return PayloadType::USER_DATA_UNREGISTERED; }
SEIuserDataUnregistered()
: userData(nullptr)
{}
SEIuserDataUnregistered(const SEIuserDataUnregistered& sei);
SEIuserDataUnregistered(const SEIuserDataUnregistered& sei);
virtual ~SEIuserDataUnregistered()
{
......@@ -591,7 +590,7 @@ public:
uint8_t uuid_iso_iec_11578[ISO_IEC_11578_LEN];
uint32_t userDataLength;
uint8_t *userData;
uint8_t *userData = nullptr;
};
class SEIDecodedPictureHash : public SEI
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment