Revision 6823506f364cd02589dd4485108516bd6bea8d9e authored by Junio C Hamano on 11 October 2016, 21:21:35 UTC, committed by Junio C Hamano on 11 October 2016, 21:21:36 UTC
A low-level function verify_packfile() was meant to show errors
that were detected without dying itself, but under some conditions
it didn't and died instead, which has been fixed.

* jk/verify-packfile-gently:
  verify_packfile: check pack validity before accessing data
2 parent s fdb70b1 + a9445d8
Raw File
version.h
#ifndef VERSION_H
#define VERSION_H

extern const char git_version_string[];

const char *git_user_agent(void);
const char *git_user_agent_sanitized(void);

#endif /* VERSION_H */
back to top