mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 00:42:08 +00:00
Fix some uninitialized variables
This commit is contained in:
parent
b209b1f960
commit
11cbdb9fef
2 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ private:
|
|||
mpg123_handle *MPG123;
|
||||
bool Done;
|
||||
|
||||
MusicIO::FileInterface* Reader;
|
||||
MusicIO::FileInterface* Reader = nullptr;
|
||||
static off_t file_lseek(void *handle, off_t offset, int whence);
|
||||
static ssize_t file_read(void *handle, void *buffer, size_t bytes);
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ private:
|
|||
SNDFILE *SndFile;
|
||||
SF_INFO SndInfo;
|
||||
|
||||
MusicIO::FileInterface* Reader;
|
||||
MusicIO::FileInterface* Reader = nullptr;
|
||||
static sf_count_t file_get_filelen(void *user_data);
|
||||
static sf_count_t file_seek(sf_count_t offset, int whence, void *user_data);
|
||||
static sf_count_t file_read(void *ptr, sf_count_t count, void *user_data);
|
||||
|
|
Loading…
Reference in a new issue