Browse Source

Merge branch 'maint-1.6.0' into maint-1.6.1

* maint-1.6.0:
  http-push.c::remove_locks(): fix use after free
maint
Junio C Hamano 16 years ago
parent
commit
ff6e93fe60
  1. 3
      http-push.c

3
http-push.c

@ -1356,8 +1356,9 @@ static void remove_locks(void) @@ -1356,8 +1356,9 @@ static void remove_locks(void)

fprintf(stderr, "Removing remote locks...\n");
while (lock) {
struct remote_lock *next = lock->next;
unlock_remote(lock);
lock = lock->next;
lock = next;
}
}


Loading…
Cancel
Save