Remove usage of unitialized variables

This commit is contained in:
Rafał Mikrut
2022-10-01 21:09:22 +02:00
parent 24115beb3c
commit 2233624152
17 changed files with 32 additions and 32 deletions

View File

@ -76,7 +76,7 @@ class VideoStreamPlaybackTheora : public VideoStreamPlayback {
th_info ti;
th_comment tc;
th_dec_ctx *td = nullptr;
vorbis_info vi;
vorbis_info vi = {};
vorbis_dsp_state vd;
vorbis_block vb;
vorbis_comment vc;