Skip to content

Commit

Permalink
Silence Coverity 700581.
Browse files Browse the repository at this point in the history
Even though the suggested overflow will never happen.
  • Loading branch information
stichnot committed May 30, 2013
1 parent d4e9323 commit 2dccff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythbase/plist.cpp
Expand Up @@ -434,7 +434,7 @@ QVariant PList::ParseBinaryReal(quint8 *data)
if (!count)
return result;

count = 1 << count;
count = 1ull << count;
if (count == sizeof(float))
{
convert_float(data, count);
Expand Down

0 comments on commit 2dccff7

Please sign in to comment.