imgcodecs(pxm): fix memcpy size

This commit is contained in:
Alexander Alekhin 2017-12-21 01:10:24 +00:00
parent eecb64a973
commit 7bbe1a53cf

View File

@ -333,7 +333,7 @@ bool PxMDecoder::readData( Mat& img )
}
}
else
memcpy( data, src, CV_ELEM_SIZE1(m_type)*m_width);
memcpy(data, src, img.elemSize1()*m_width);
}
else
{