Commit 41107450 authored by Nick Mathewson's avatar Nick Mathewson 🦀
Browse files

Merge branch 'maint-0.3.1'

parents 3a073c46 82f109c2
Loading
Loading
Loading
Loading

changes/bug23551

0 → 100644
+3 −0
Original line number Diff line number Diff line
  o Minor bugfixes (compression):
    - Handle a pathological case when decompressing Zstandard data when the
      output buffer size is zero. Fixes bug 23551; bugfix on 0.3.1.1-alpha.
+7 −0
Original line number Diff line number Diff line
@@ -547,6 +547,13 @@ tor_compress_process(tor_compress_state_t *state,
  const size_t out_len_orig = *out_len;
  tor_compress_output_t rv;

  if (*out_len == 0 && (*in_len > 0 || finish)) {
    // If we still have input data, but no space for output data, we might as
    // well return early and let the caller do the reallocation of the out
    // variable.
    return TOR_COMPRESS_BUFFER_FULL;
  }

  switch (state->method) {
    case GZIP_METHOD:
    case ZLIB_METHOD: