Jp2Image::printStructure: Corrected used DataBuf for output

v0.27.3
Robin Mills 8 years ago committed by Dan Čermák
parent befe8c64e3
commit e96e0daa8a

@ -520,9 +520,9 @@ namespace Exiv2
if ( bPrint ) {
out << " | iccLength:" << iccLength ;
}
DataBuf icc(iccLength);
if ( bICC ) out.write((const char*)icc.pData_,icc.size_);
if ( bICC ) {
out.write((const char*)data.pData_+pad,iccLength);
}
}
lf(out,bLF);
}

Loading…
Cancel
Save