X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=sshzlib.c;h=c69edfb81f9a09648baa67c5cf909b3e83aaabcc;hb=068b67d2f6e9b186b3107ebcb1e88a141b7b5ebc;hp=05fa57722a56810c607260d9e94ebf28ffc4b4b3;hpb=799f7f563d505357cf904b5b8e28dcbc79194063;p=PuTTY.git diff --git a/sshzlib.c b/sshzlib.c index 05fa5772..c69edfb8 100644 --- a/sshzlib.c +++ b/sshzlib.c @@ -205,9 +205,16 @@ static void lz77_compress(struct LZ77Context *ctx, struct Match defermatch, matches[MAXMATCH]; int deferchr; + assert(st->npending <= HASHCHARS); + /* * Add any pending characters from last time to the window. (We * might not be able to.) + * + * This leaves st->pending empty in the usual case (when len >= + * HASHCHARS); otherwise it leaves st->pending empty enough that + * adding all the remaining 'len' characters will not push it past + * HASHCHARS in size. */ for (i = 0; i < st->npending; i++) { unsigned char foo[HASHCHARS]; @@ -334,6 +341,7 @@ static void lz77_compress(struct LZ77Context *ctx, if (len >= HASHCHARS) { lz77_advance(st, *data, lz77_hash(data)); } else { + assert(st->npending < HASHCHARS); st->pending[st->npending++] = *data; } data++; @@ -1226,6 +1234,8 @@ int zlib_decompress_block(void *handle, unsigned char *block, int len, goto finished; if (code == -2) goto decode_error; + if (code >= 30) /* dist symbols 30 and 31 are invalid */ + goto decode_error; dctx->state = GOTDISTSYM; dctx->sym = code; break;