diff options
Diffstat (limited to 'src/plugins/Input/mpc/decoder_mpc.cpp')
| -rw-r--r-- | src/plugins/Input/mpc/decoder_mpc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/Input/mpc/decoder_mpc.cpp b/src/plugins/Input/mpc/decoder_mpc.cpp index 3df2165b3..714ed0d89 100644 --- a/src/plugins/Input/mpc/decoder_mpc.cpp +++ b/src/plugins/Input/mpc/decoder_mpc.cpp @@ -66,7 +66,7 @@ DecoderMPC::DecoderMPC(QIODevice *i) m_len = 0; m_bitrate = 0; m_totalTime = 0.0; - m_data = 0; + m_data = nullptr; } DecoderMPC::~DecoderMPC() @@ -77,7 +77,7 @@ DecoderMPC::~DecoderMPC() if(m_data->demuxer) mpc_demux_exit(m_data->demuxer); delete m_data; - m_data = 0; + m_data = nullptr; } } |
