X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Flzx-decompress.c;h=2c46651227c85cb489c83ca8fca571cb8a03ec8b;hb=d2def9adabc7282e944ed890f9189c8a850a274a;hp=411a3a0436fd99e2bb05818c10a677b800df2e32;hpb=93110bb18090d4d2c00294a56f819c7edeef318f;p=wimlib diff --git a/src/lzx-decompress.c b/src/lzx-decompress.c index 411a3a04..2c466512 100644 --- a/src/lzx-decompress.c +++ b/src/lzx-decompress.c @@ -7,20 +7,18 @@ /* * Copyright (C) 2012, 2013, 2014 Eric Biggers * - * This file is part of wimlib, a library for working with WIM files. + * This file is free software; you can redistribute it and/or modify it under + * the terms of the GNU Lesser General Public License as published by the Free + * Software Foundation; either version 3 of the License, or (at your option) any + * later version. * - * wimlib is free software; you can redistribute it and/or modify it under the - * terms of the GNU General Public License as published by the Free - * Software Foundation; either version 3 of the License, or (at your option) - * any later version. - * - * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR - * A PARTICULAR PURPOSE. See the GNU General Public License for more + * This file is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License - * along with wimlib; if not, see http://www.gnu.org/licenses/. + * You should have received a copy of the GNU Lesser General Public License + * along with this file; if not, see http://www.gnu.org/licenses/. */ /* @@ -502,7 +500,8 @@ lzx_decompress_block(int block_type, u32 block_size, if (unlikely(match_offset > window_ptr - window)) return -1; - lz_copy(window_ptr, match_len, match_offset, window_end); + lz_copy(window_ptr, match_len, match_offset, window_end, + LZX_MIN_MATCH_LEN); window_ptr += match_len; }