Skip to content

Commit

Permalink
Merge pull request #1319 from Karlson2k/Fix_DVD_01
Browse files Browse the repository at this point in the history
DVDPlayer: Prevent using of uninitialized variable
  • Loading branch information
elupus committed Aug 22, 2012
2 parents 0533174 + 9d4a162 commit 527681c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ int CDVDInputStreamNavigator::ProcessBlock(BYTE* dest_buffer, int* read)
if (!m_dvdnav) return -1;

int result;
int len;
int len = 2048;
int iNavresult = NAVRESULT_NOP;

// m_tempbuffer will be used for anything that isn't a normal data block
Expand Down

0 comments on commit 527681c

Please sign in to comment.