Displaying 1 result from an estimated 1 matches for "_ntoks_left".
2004 Aug 06
0
No subject
...) is not implemented literally, since that routine doesn't know
the number of coded blocks, much less the array TIS, which is never
explicitly constructed in my decoder implementation. It just returns a
really big number instead.)
This should prevent overflow in decoder.c:895
while(cfi+eobs<_ntoks_left[pli][_zzi]){
Alternatively that could be rewritten
while(eobs<_ntoks_left[pli][_zzi]-cfi){
But I'm not positive that's the only place using eobs could overflow. I
thought I checked, but clearly I missed at least one. Let's get rid of
all of them at once.
That should at least make t...