Commit 9111595e authored by Daniel Friesel's avatar Daniel Friesel
Browse files

Fix illegal array access

parent 79eb1dc8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -252,7 +252,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++;
			}
		}