Skip to content

Commit

Permalink
commit_lock_file(): use a strbuf to manage temporary space
Browse files Browse the repository at this point in the history
Avoid relying on the filename length restrictions that are currently
checked by lock_file().

Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Michael Haggerty authored and Junio C Hamano committed Oct 1, 2014
1 parent daccee3 commit 3e88e8f
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions lockfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -319,19 +319,21 @@ int reopen_lock_file(struct lock_file *lk)

int commit_lock_file(struct lock_file *lk)
{
char result_file[PATH_MAX];
static struct strbuf result_file = STRBUF_INIT;
int err;

if (!lk->active)
die("BUG: attempt to commit unlocked object");

if (close_lock_file(lk))
return -1;

strcpy(result_file, lk->filename);
/* remove ".lock": */
result_file[strlen(result_file) - LOCK_SUFFIX_LEN] = 0;

if (rename(lk->filename, result_file)) {
strbuf_add(&result_file, lk->filename,
strlen(lk->filename) - LOCK_SUFFIX_LEN);
err = rename(lk->filename, result_file.buf);
strbuf_reset(&result_file);
if (err) {
int save_errno = errno;
rollback_lock_file(lk);
errno = save_errno;
Expand Down

0 comments on commit 3e88e8f

Please sign in to comment.