index
:
pub/scm/git/git.git
jch
main
maint
master
next
seen
todo
Git source code mirror
Junio C Hamano
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
reftable
/
block.c
Age
Commit message (
Expand
)
Author
Files
Lines
2026-08-24
Merge branch 'js/coverity-unchecked-returns-fix'
Junio C Hamano
1
-1
/
+4
2026-08-12
reftable/block: check deflateInit() return value
Johannes Schindelin
1
-1
/
+4
2026-07-03
reftable/block: fix OOB read with bogus restart offset
Patrick Steinhardt
1
-0
/
+9
2026-07-03
reftable/block: fix use of uninitialized memory when binsearch fails
Patrick Steinhardt
1
-4
/
+4
2026-07-03
reftable/block: fix OOB read with bogus restart count
Patrick Steinhardt
1
-0
/
+4
2026-07-03
reftable/block: fix OOB read with bogus block size
Patrick Steinhardt
1
-0
/
+9
2026-07-03
reftable/block: fix OOB write with bogus inflated log size
Patrick Steinhardt
1
-0
/
+9
2025-05-19
Merge branch 'ps/reftable-read-block-perffix'
Junio C Hamano
1
-1
/
+6
2025-05-12
reftable: fix perf regression when reading blocks of unwanted type
Patrick Steinhardt
1
-1
/
+6
2025-04-29
Merge branch 'ps/reftable-api-revamp'
Junio C Hamano
1
-109
/
+175
2025-04-08
Merge branch 'ps/reftable-sans-compat-util'
Junio C Hamano
1
-7
/
+9
2025-04-07
reftable/constants: make block types part of the public interface
Patrick Steinhardt
1
-2
/
+2
2025-04-07
reftable/block: expose a generic iterator over reftable records
Patrick Steinhardt
1
-0
/
+56
2025-04-07
reftable/block: make block iterators reseekable
Patrick Steinhardt
1
-10
/
+13
2025-04-07
reftable/block: store block pointer in the block iterator
Patrick Steinhardt
1
-14
/
+8
2025-04-07
reftable/block: rename `block_reader` to `reftable_block`
Patrick Steinhardt
1
-71
/
+71
2025-04-07
reftable/block: rename `block` to `block_data`
Patrick Steinhardt
1
-23
/
+23
2025-04-07
reftable/table: move reading block into block reader
Patrick Steinhardt
1
-31
/
+56
2025-04-07
reftable/block: simplify how we track restart points
Patrick Steinhardt
1
-13
/
+12
2025-04-07
reftable/blocksource: consolidate code into a single file
Patrick Steinhardt
1
-14
/
+3
2025-04-07
reftable: fix formatting of the license header
Patrick Steinhardt
1
-6
/
+6
2025-03-21
reftable: propagate specific error codes in block_writer_add()
Meet Soni
1
-6
/
+7
2025-02-18
reftable/basics: provide wrappers for big endian conversion
Patrick Steinhardt
1
-6
/
+6
2025-02-18
reftable/record: stop using `BUG()` in `reftable_record_init()`
Patrick Steinhardt
1
-1
/
+3
2025-02-06
Merge branch 'ps/zlib-ng'
Junio C Hamano
1
-1
/
+0
2025-01-28
git-compat-util: move include of "compat/zlib.h" into "git-zlib.h"
Patrick Steinhardt
1
-1
/
+0
2025-01-28
compat: introduce new "zlib.h" header
Patrick Steinhardt
1
-1
/
+1
2025-01-21
reftable/block: adjust type of the restart length
Patrick Steinhardt
1
-7
/
+5
2025-01-21
reftable/block: adapt header and footer size to return a `size_t`
Patrick Steinhardt
1
-2
/
+2
2025-01-21
reftable/basics: adjust `hash_size()` to return `uint32_t`
Patrick Steinhardt
1
-2
/
+2
2024-12-28
reftable: avoid leaks on realloc error
René Scharfe
1
-4
/
+6
2024-11-26
reftable: rename scratch buffer
Patrick Steinhardt
1
-5
/
+5
2024-11-21
reftable/block: optimize allocations by using scratch buffer
Patrick Steinhardt
1
-8
/
+5
2024-11-21
reftable/block: rename `block_writer::buf` variable
Patrick Steinhardt
1
-10
/
+10
2024-10-17
reftable: handle trivial `reftable_buf` errors
Patrick Steinhardt
1
-2
/
+7
2024-10-17
reftable/record: adapt `reftable_record_key()` to handle allocation failures
Patrick Steinhardt
1
-5
/
+15
2024-10-17
reftable: convert from `strbuf` to `reftable_buf`
Patrick Steinhardt
1
-17
/
+17
2024-10-17
reftable: stop using `strbuf_addbuf()`
Patrick Steinhardt
1
-1
/
+1
2024-10-02
reftable: introduce `REFTABLE_FREE_AND_NULL()`
Patrick Steinhardt
1
-3
/
+3
2024-10-02
reftable/block: handle allocation failures
Patrick Steinhardt
1
-2
/
+21
2024-05-13
reftable/block: use `size_t` to track restart point index
Patrick Steinhardt
1
-2
/
+2
2024-05-08
Merge branch 'ps/reftable-write-optim'
Junio C Hamano
1
-26
/
+46
2024-04-15
reftable/block: avoid copying block iterators on seek
Patrick Steinhardt
1
-18
/
+14
2024-04-15
reftable/block: reuse `zstream` state on inflation
Patrick Steinhardt
1
-10
/
+15
2024-04-15
reftable/block: open-code call to `uncompress2()`
Patrick Steinhardt
1
-10
/
+28
2024-04-15
reftable/block: reuse uncompressed blocks
Patrick Steinhardt
1
-8
/
+6
2024-04-15
reftable/reader: iterate to next block in place
Patrick Steinhardt
1
-0
/
+2
2024-04-15
reftable/block: move ownership of block reader into `struct table_iter`
Patrick Steinhardt
1
-14
/
+29
2024-04-15
reftable/block: introduce `block_reader_release()`
Patrick Steinhardt
1
-0
/
+5
2024-04-15
reftable/block: better grouping of functions
Patrick Steinhardt
1
-25
/
+25
[next]