diff --git a/http-push.c b/http-push.c index 968b6b0662..f101df4086 100644 --- a/http-push.c +++ b/http-push.c @@ -1378,8 +1378,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; } }