Commit Briefs

9985f404ff Stefan Sperling

parse tree entries into an array instead of a pathlist

Avoids some extra malloc/free in a performance-critical path. ok op@




08578a35f6 Stefan Sperling

make close(2) failure checks consistent; check 'close() == -1' everywhere

ok millert, naddy


56b63ca4ab Stefan Sperling

make fclose(3) failure checks consistent; check 'fclose() == EOF' everywhere

ok millert, naddy


23c57b285f Christian Weisgerber

Stop including <sys/syslimits.h> directly.

POSIX says the limits defined there are available from <limits.h>, which almost all affected source files already included anyway. ok millert stsp


81a12da586 Christian Weisgerber

do not rely on <zlib.h> to pull in <unistd.h>

ok stsp



5aa813935b Stefan Sperling

add copyright year for files already touched in 2020



b64b1f953a Stefan Sperling

plug a memory leak; parsed tree entries were not freed




638f902404 Stefan Sperling

rename got_error_prefix_errno() to got_error_from_errno()


656b1f76d3 joshua stein

while (1) -> for (;;)


230a42bdc6 joshua stein

got_error_from_errno -> got_error_prefix_errno

also add got_error_prefix_errno2 and got_error_prefix_errno3 which should hopefully all be merged into a single function with variadic args (but can't alloc mem)


3a6ce05aff Stefan Sperling

check for errors from close(2)


fb43ecf150 Stefan Sperling

check for errors from fclose()


13c729f710 Stefan Sperling

eliminate got_object_open() round-trip when opening trees


80d5f1347d Stefan Sperling

don't be noisy on stderr when Ctrl-C is hit


99437157b9 Stefan Sperling

abort checkout operations cleanly when Ctrl-C is hit


2ff12563f8 Stefan Sperling

fix 'make PROFILE=1' build


876c234bd6 Stefan Sperling

start reading pack files with privsep; still WIP


ad242220ad Stefan Sperling

implement fork+exec (and by the way, fix the build...)