alloc memory error

This commit is contained in:
Oleg Korshul
2016-07-12 13:29:47 +03:00
parent 1d4c62e591
commit 7b896397db

View File

@ -390,7 +390,7 @@ namespace NSOnlineOfficeBinToPdf
case Aggplus::DashStyleCustom:
{
int nCountDash = ReadInt(current, curindex);
double* pDash = new double(nCountDash);
double* pDash = new double[nCountDash];
for (int nDash = 0; nDash < nCountDash; ++nDash)
{
pDash[nDash] = ReadInt(current, curindex) / 100000.0;