Commit 7b896397 authored by Oleg Korshul's avatar Oleg Korshul

alloc memory error

parent 1d4c62e5
...@@ -390,7 +390,7 @@ namespace NSOnlineOfficeBinToPdf ...@@ -390,7 +390,7 @@ namespace NSOnlineOfficeBinToPdf
case Aggplus::DashStyleCustom: case Aggplus::DashStyleCustom:
{ {
int nCountDash = ReadInt(current, curindex); int nCountDash = ReadInt(current, curindex);
double* pDash = new double(nCountDash); double* pDash = new double[nCountDash];
for (int nDash = 0; nDash < nCountDash; ++nDash) for (int nDash = 0; nDash < nCountDash; ++nDash)
{ {
pDash[nDash] = ReadInt(current, curindex) / 100000.0; pDash[nDash] = ReadInt(current, curindex) / 100000.0;
......
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