Commit 0d60c0e8 authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

Merge pull request #8712 from grundman:patch-5

parents 03aa69da 0e64e68d
......@@ -384,7 +384,7 @@ public:
}
else
{
data[m_pos] |= (tempval << bits_free);
data[m_pos] |= (bits_free == 32) ? tempval : (tempval << bits_free);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment