Commit 68f30da7 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

fix illegal array access

parent 2b6ce95e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -250,7 +250,7 @@ static int8_t deflate_huffman(uint8_t * ll_lengths, uint16_t ll_size,
					return DEFLATE_ERR_OUTPUT_LENGTH;
				}
				deflate_output_now[0] =
				    deflate_output_now[-dist_val];
				    *(deflate_output_now - dist_val);
				deflate_output_now++;
			}
		}