Merge pull request #8712 from grundman:patch-5

This commit is contained in:
Vadim Pisarevsky 2017-05-17 15:02:45 +00:00
commit 0d60c0e8c4

View File

@ -384,7 +384,7 @@ public:
}
else
{
data[m_pos] |= (tempval << bits_free);
data[m_pos] |= (bits_free == 32) ? tempval : (tempval << bits_free);
}
}