Added two assert()s.

This commit is contained in:
Lasse Collin 2008-04-24 20:19:20 +03:00
parent eb348a60b6
commit 283f939974
1 changed files with 3 additions and 1 deletions

View File

@ -71,7 +71,7 @@ do { \
#define length_encode(length_encoder, symbol, pos_state, update_price) \
do { \
\
assert((symbol) <= MATCH_MAX_LEN); \
if ((symbol) < LEN_LOW_SYMBOLS) { \
bit_encode_0((length_encoder).choice); \
bittree_encode((length_encoder).low[pos_state], \
@ -352,6 +352,8 @@ lzma_lzma_encode(lzma_coder *coder, uint8_t *restrict out,
if (coder->lz.sequence != SEQ_RUN
&& coder->lz.read_pos == coder->lz.write_pos
&& coder->additional_offset == 0) {
assert(coder->longest_match_was_found == false);
if (coder->lz.uncompressed_size == LZMA_VLI_VALUE_UNKNOWN
|| coder->lz.sequence == SEQ_FLUSH) {
// Write special marker: flush marker or end of payload