Skip to content

Commit

Permalink
Merge branch 'mh/maint-notes-merge-pathbuf-fix'
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
gitster committed Oct 10, 2011
2 parents bf604e6 + 8528445 commit e579a5d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion notes-merge.c
Expand Up @@ -681,7 +681,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 @@ -721,6 +721,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 e579a5d

Please sign in to comment.