Skip to content

Commit

Permalink
Merge branch 'mh/maint-notes-merge-pathbuf-fix' into maint-1.7.6
Browse files Browse the repository at this point in the history
* mh/maint-notes-merge-pathbuf-fix:
  notes_merge_commit(): do not pass temporary buffer to other function
  • Loading branch information
Junio C Hamano committed Oct 26, 2011
2 parents 58f75bc + 8528445 commit 8280baf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion notes-merge.c
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ int notes_merge_commit(struct notes_merge_options *o,
* Finally store the new commit object SHA1 into 'result_sha1'.
*/
struct dir_struct dir;
const char *path = git_path(NOTES_MERGE_WORKTREE "/");
char *path = xstrdup(git_path(NOTES_MERGE_WORKTREE "/"));
int path_len = strlen(path), i;
const char *msg = strstr(partial_commit->buffer, "\n\n");

Expand Down Expand Up @@ -720,6 +720,7 @@ int notes_merge_commit(struct notes_merge_options *o,
result_sha1);
OUTPUT(o, 4, "Finalized notes merge commit: %s",
sha1_to_hex(result_sha1));
free(path);
return 0;
}

Expand Down

0 comments on commit 8280baf

Please sign in to comment.