| author | |
| committer | |
| log | e326d7e8ecd2c999faf0581e8e9c1517dcb5ab52 |
| tree | 43408db31122d7aa756ccbb395d4016d84b1ae09 |
| parent | a091ccb217b7374efb2630d7f063db6a83fbac33 |
2 files changed, 4 insertions(+), 4 deletions(-)
lib/std/compress/zstd/Decompress.zig+3-3| ... | ... | @@ -463,9 +463,9 @@ pub const Frame = struct { |
| 463 | 463 | InputBufferUndersize, |
| 464 | 464 | }; |
| 465 | 465 | |
| 466 | /// Prepare the decoder to decode a compressed block. Loads the literals | |
| 467 | /// stream and Huffman tree from `literals` and reads the FSE tables from | |
| 468 | /// `source`. | |
| 466 | /// Prepare the decoder to decode a compressed block. Loads the | |
| 467 | /// literals stream and Huffman tree from `literals` and reads the | |
| 468 | /// FSE tables from `in`. | |
| 469 | 469 | pub fn prepare( |
| 470 | 470 | self: *Decode, |
| 471 | 471 | in: *BufferedReader, |
lib/std/fs/Dir.zig+1-1| ... | ... | @@ -2045,7 +2045,7 @@ pub fn readFileIntoArrayList( |
| 2045 | 2045 | else => |e| return e, |
| 2046 | 2046 | } |
| 2047 | 2047 | |
| 2048 | file_reader.interface().readRemainingArrayList(gpa, alignment, list, limit) catch |err| switch (err) { | |
| 2048 | file_reader.interface().readRemainingArrayList(gpa, alignment, list, limit, 128) catch |err| switch (err) { | |
| 2049 | 2049 | error.OutOfMemory => return error.OutOfMemory, |
| 2050 | 2050 | error.StreamTooLong => return error.StreamTooLong, |
| 2051 | 2051 | error.ReadFailed => return file_reader.err.?, |