Read beyond buffer end (found by Kato)

This commit is contained in:
jdv_cp 2009-04-15 11:47:55 -07:00
parent fbca0ac66c
commit faa77d7f9e

2
scan.h
View File

@ -788,7 +788,7 @@ size_t JlsCodec<TRAITS,STRATEGY>::DecodeScan(void* pvoidOut, const Size& size, L
_size = size;
_components = components;
DoScan(const_cast<PIXEL*>(ptypeOut), pbyteCompressed + cbyteRead, (LONG)cbyte);
DoScan(const_cast<PIXEL*>(ptypeOut), pbyteCompressed + cbyteRead, cbyte - cbyteRead);
return STRATEGY::GetCurBytePos() - pbyteCompressed;
}