https://github.com/git/git
Revision d78b7eb2d50bd1cf57d7f06c1b4bdd8e08057926 authored by Junio C Hamano on 22 March 2018, 21:24:12 UTC, committed by Junio C Hamano on 22 March 2018, 21:24:12 UTC
Plug recently introduced leaks in fsck.

* jt/fsck-code-cleanup:
  fsck: fix leak when traversing trees
2 parent s 34b9ec8 + ba3a08c
Raw File
Tip revision: d78b7eb2d50bd1cf57d7f06c1b4bdd8e08057926 authored by Junio C Hamano on 22 March 2018, 21:24:12 UTC
Merge branch 'jt/fsck-code-cleanup' into maint
Tip revision: d78b7eb
varint.h
#ifndef VARINT_H
#define VARINT_H

extern int encode_varint(uintmax_t, unsigned char *);
extern uintmax_t decode_varint(const unsigned char **);

#endif /* VARINT_H */
back to top