avcodec/jpeg2000dec: More completely check cdef
Fixes out of array read Fixes: j2k-poc.bin Found-by: Lucas Leong <wmliang.tw@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
		
							parent
							
								
									75a7565bcb
								
							
						
					
					
						commit
						0aada30510
					
				@ -1766,11 +1766,15 @@ static int jpeg2000_decode_tile(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile,
 | 
				
			|||||||
    if (tile->codsty[0].mct)
 | 
					    if (tile->codsty[0].mct)
 | 
				
			||||||
        mct_decode(s, tile);
 | 
					        mct_decode(s, tile);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (s->cdef[0] < 0) {
 | 
					    for (x = 0; x < s->ncomponents; x++) {
 | 
				
			||||||
        for (x = 0; x < s->ncomponents; x++)
 | 
					        if (s->cdef[x] < 0) {
 | 
				
			||||||
            s->cdef[x] = x + 1;
 | 
					            for (x = 0; x < s->ncomponents; x++) {
 | 
				
			||||||
        if ((s->ncomponents & 1) == 0)
 | 
					                s->cdef[x] = x + 1;
 | 
				
			||||||
            s->cdef[s->ncomponents-1] = 0;
 | 
					            }
 | 
				
			||||||
 | 
					            if ((s->ncomponents & 1) == 0)
 | 
				
			||||||
 | 
					                s->cdef[s->ncomponents-1] = 0;
 | 
				
			||||||
 | 
					            break;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (s->precision <= 8) {
 | 
					    if (s->precision <= 8) {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user