Merge pull request #3972

fbf617a remove an assignment which is never used. (Yoichi Hirai)
This commit is contained in:
Wladimir J. van der Laan 2014-04-07 08:09:04 +02:00
commit f4e1c347cf
No known key found for this signature in database
GPG key ID: 74810B012346C9A6

View file

@ -1038,10 +1038,7 @@ public:
if (nReadPosNext >= vch.size())
{
if (nReadPosNext > vch.size())
{
setstate(std::ios::failbit, "CDataStream::ignore() : end of data");
nSize = vch.size() - nReadPos;
}
nReadPos = 0;
vch.clear();
return (*this);