Commit 2327fd9e authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander Trofimov

excel bug

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@59514 954022d7-b5bf-4e40-9824-e11837661b57
parent 350af788
...@@ -681,6 +681,9 @@ public: ...@@ -681,6 +681,9 @@ public:
{ {
skip_int2(pData, nCur, nLen); skip_int2(pData, nCur, nLen);
if (nCur >= nLen)
break;
read_base64(pData, nCur, nLen); read_base64(pData, nCur, nLen);
++nCur; ++nCur;
...@@ -792,6 +795,9 @@ public: ...@@ -792,6 +795,9 @@ public:
while (nCur < nLen) while (nCur < nLen)
{ {
skip_int2(pData, nCur, nLen); skip_int2(pData, nCur, nLen);
if (nCur >= nLen)
break;
read_base64(pData, nCur, nLen); read_base64(pData, nCur, nLen);
++nCur; ++nCur;
......
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