Skip to content

Commit

Permalink
Revert "AudioOutputBase: Fix Coverity 746810. Dereference after null …
Browse files Browse the repository at this point in the history
…check. False positive, and flagged as such with Coverity, but applying a 'fix' anyway to keep other SA tools quiet."

This reverts commit 3e30a16.
  • Loading branch information
jyavenard committed Jun 21, 2013
1 parent d7af2e5 commit 1a111ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmyth/audio/audiooutputbase.cpp
Expand Up @@ -1226,7 +1226,7 @@ int AudioOutputBase::CopyWithUpmix(char *buffer, int frames, uint &org_waud)
int bpf = bytes_per_frame;
int off = 0;

if (!needs_upmix || !upmixer)
if (!needs_upmix)
{
int num = len;

Expand Down

0 comments on commit 1a111ac

Please sign in to comment.