diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2017-06-22 16:59:51 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2017-06-22 16:59:57 +0900 |
commit | 57de6cacd32854c3b7942dde1803894341f78cee (patch) | |
tree | ba55c881a740c59ea9443a139e4c4ae91e44e95d /src/lzo1.c | |
parent | 8ff61daa672f051d8ecb537edc94036b6cdaaf3f (diff) | |
download | lzo-57de6cacd32854c3b7942dde1803894341f78cee.tar.gz lzo-57de6cacd32854c3b7942dde1803894341f78cee.tar.bz2 lzo-57de6cacd32854c3b7942dde1803894341f78cee.zip |
Imported Upstream version 2.10upstream/2.10upstream
Change-Id: Ic72ac9c6134dff3a335d581378095e0011abcb08
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'src/lzo1.c')
-rw-r--r-- | src/lzo1.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2,7 +2,7 @@ This file is part of the LZO real-time data compression library. - Copyright (C) 1996-2015 Markus Franz Xaver Johannes Oberhumer + Copyright (C) 1996-2017 Markus Franz Xaver Johannes Oberhumer All Rights Reserved. The LZO library is free software; you can redistribute it and/or @@ -504,8 +504,8 @@ match: assert(end < in_end); } - while (ip < end && *m_pos == *ip) - m_pos++, ip++; + while (ip < end && *m_pos == *ip) + { m_pos++; ip++; } assert(ip <= in_end); /* 2b) code the long match */ |