summaryrefslogtreecommitdiff
path: root/src/global.h
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2014-08-18 12:41:06 +0200
committerVicent Marti <tanoku@gmail.com>2014-08-18 12:41:06 +0200
commit4ca0b566ca811550b4db31045e580b4970e5b8e3 (patch)
treee34ed66136f5a6cdf496b4d8c8a52fcb9c17702e /src/global.h
parent59403f1ff55346c64bfaa0744ea7f3375da71725 (diff)
downloadlibgit2-4ca0b566ca811550b4db31045e580b4970e5b8e3.tar.gz
oid: Export `git_oid_tostr_s` instead of `_allocfmt`vmg/tostr_s
The old `allocfmt` is of no use to callers, as they are not able to free the returned buffer. Export a new API that returns a static string that doesn't need to be freed.
Diffstat (limited to 'src/global.h')
-rw-r--r--src/global.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/global.h b/src/global.h
index 745df3e4a..106504628 100644
--- a/src/global.h
+++ b/src/global.h
@@ -13,6 +13,7 @@
typedef struct {
git_error *last_error;
git_error error_t;
+ char oid_fmt[41];
} git_global_st;
#ifdef GIT_SSL