Commit 4f76ef56 by Edward Thomson

oid: don't assume thread local state was initialized

git_oid_tostr_s could fail if thread-local state initialization fails.
In that case, it will now return `NULL`.  Callers should check for
`NULL` and propagate the failure.
parent ce488be4
...@@ -225,7 +225,7 @@ GIT_EXTERN(int) git_oid_pathfmt(char *out, const git_oid *id); ...@@ -225,7 +225,7 @@ GIT_EXTERN(int) git_oid_pathfmt(char *out, const git_oid *id);
* concurrent calls of the function. * concurrent calls of the function.
* *
* @param oid The oid structure to format * @param oid The oid structure to format
* @return the c-string * @return the c-string or NULL on failure
*/ */
GIT_EXTERN(char *) git_oid_tostr_s(const git_oid *oid); GIT_EXTERN(char *) git_oid_tostr_s(const git_oid *oid);
......
...@@ -519,7 +519,13 @@ static int store_object(git_indexer *idx) ...@@ -519,7 +519,13 @@ static int store_object(git_indexer *idx)
pentry->offset = entry_start; pentry->offset = entry_start;
if (git_oidmap_exists(idx->pack->idx_cache, &pentry->id)) { if (git_oidmap_exists(idx->pack->idx_cache, &pentry->id)) {
git_error_set(GIT_ERROR_INDEXER, "duplicate object %s found in pack", git_oid_tostr_s(&pentry->id)); const char *idstr = git_oid_tostr_s(&pentry->id);
if (!idstr)
git_error_set(GIT_ERROR_INDEXER, "failed to parse object id");
else
git_error_set(GIT_ERROR_INDEXER, "duplicate object %s found in pack", idstr);
git__free(pentry); git__free(pentry);
goto on_error; goto on_error;
} }
......
...@@ -1494,11 +1494,16 @@ static int read_prefix_1(git_odb_object **out, git_odb *db, ...@@ -1494,11 +1494,16 @@ static int read_prefix_1(git_odb_object **out, git_odb *db,
if (found && git_oid__cmp(&full_oid, &found_full_oid)) { if (found && git_oid__cmp(&full_oid, &found_full_oid)) {
git_str buf = GIT_STR_INIT; git_str buf = GIT_STR_INIT;
const char *idstr;
git_str_printf(&buf, "multiple matches for prefix: %s", if ((idstr = git_oid_tostr_s(&full_oid)) == NULL) {
git_oid_tostr_s(&full_oid)); git_str_puts(&buf, "failed to parse object id");
git_str_printf(&buf, " %s", } else {
git_oid_tostr_s(&found_full_oid)); git_str_printf(&buf, "multiple matches for prefix: %s", idstr);
if ((idstr = git_oid_tostr_s(&found_full_oid)) != NULL)
git_str_printf(&buf, " %s", idstr);
}
error = git_odb__error_ambiguous(buf.ptr); error = git_odb__error_ambiguous(buf.ptr);
git_str_dispose(&buf); git_str_dispose(&buf);
......
...@@ -155,7 +155,13 @@ int git_oid_pathfmt(char *str, const git_oid *oid) ...@@ -155,7 +155,13 @@ int git_oid_pathfmt(char *str, const git_oid *oid)
char *git_oid_tostr_s(const git_oid *oid) char *git_oid_tostr_s(const git_oid *oid)
{ {
char *str = GIT_THREADSTATE->oid_fmt; git_threadstate *threadstate = GIT_THREADSTATE;
char *str;
if (!threadstate)
return NULL;
str = threadstate->oid_fmt;
git_oid_nfmt(str, git_oid_hexsize(git_oid_type(oid)) + 1, oid); git_oid_nfmt(str, git_oid_hexsize(git_oid_type(oid)) + 1, oid);
return str; return str;
} }
......
...@@ -3422,12 +3422,18 @@ cleanup: ...@@ -3422,12 +3422,18 @@ cleanup:
static int checkout_message(git_str *out, git_reference *old, const char *new) static int checkout_message(git_str *out, git_reference *old, const char *new)
{ {
const char *idstr;
git_str_puts(out, "checkout: moving from "); git_str_puts(out, "checkout: moving from ");
if (git_reference_type(old) == GIT_REFERENCE_SYMBOLIC) if (git_reference_type(old) == GIT_REFERENCE_SYMBOLIC) {
git_str_puts(out, git_reference__shorthand(git_reference_symbolic_target(old))); git_str_puts(out, git_reference__shorthand(git_reference_symbolic_target(old)));
else } else {
git_str_puts(out, git_oid_tostr_s(git_reference_target(old))); if ((idstr = git_oid_tostr_s(git_reference_target(old))) == NULL)
return -1;
git_str_puts(out, idstr);
}
git_str_puts(out, " to "); git_str_puts(out, " to ");
...@@ -3463,8 +3469,11 @@ static int detach(git_repository *repo, const git_oid *id, const char *new) ...@@ -3463,8 +3469,11 @@ static int detach(git_repository *repo, const git_oid *id, const char *new)
if ((error = git_object_peel(&peeled, object, GIT_OBJECT_COMMIT)) < 0) if ((error = git_object_peel(&peeled, object, GIT_OBJECT_COMMIT)) < 0)
goto cleanup; goto cleanup;
if (new == NULL) if (new == NULL &&
new = git_oid_tostr_s(git_object_id(peeled)); (new = git_oid_tostr_s(git_object_id(peeled))) == NULL) {
error = -1;
goto cleanup;
}
if ((error = checkout_message(&log_message, current, new)) < 0) if ((error = checkout_message(&log_message, current, new)) < 0)
goto cleanup; goto cleanup;
...@@ -3552,6 +3561,7 @@ int git_repository_detach_head(git_repository *repo) ...@@ -3552,6 +3561,7 @@ int git_repository_detach_head(git_repository *repo)
git_reference *old_head = NULL, *new_head = NULL, *current = NULL; git_reference *old_head = NULL, *new_head = NULL, *current = NULL;
git_object *object = NULL; git_object *object = NULL;
git_str log_message = GIT_STR_INIT; git_str log_message = GIT_STR_INIT;
const char *idstr;
int error; int error;
GIT_ASSERT_ARG(repo); GIT_ASSERT_ARG(repo);
...@@ -3565,7 +3575,12 @@ int git_repository_detach_head(git_repository *repo) ...@@ -3565,7 +3575,12 @@ int git_repository_detach_head(git_repository *repo)
if ((error = git_object_lookup(&object, repo, git_reference_target(old_head), GIT_OBJECT_COMMIT)) < 0) if ((error = git_object_lookup(&object, repo, git_reference_target(old_head), GIT_OBJECT_COMMIT)) < 0)
goto cleanup; goto cleanup;
if ((error = checkout_message(&log_message, current, git_oid_tostr_s(git_object_id(object)))) < 0) if ((idstr = git_oid_tostr_s(git_object_id(object))) == NULL) {
error = -1;
goto cleanup;
}
if ((error = checkout_message(&log_message, current, idstr)) < 0)
goto cleanup; goto cleanup;
error = git_reference_create(&new_head, repo, GIT_HEAD_FILE, git_reference_target(old_head), error = git_reference_create(&new_head, repo, GIT_HEAD_FILE, git_reference_target(old_head),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment