builtin/apply: add 'lock_file' pointer into 'struct apply_state'
commit8f31fac365c312aa9109a7a1fc1014e56ed473d2
authorChristian Couder <christian.couder@gmail.com>
Fri, 3 Jun 2016 16:58:51 +0000 (3 18:58 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 3 Jun 2016 17:30:16 +0000 (3 10:30 -0700)
treead51b6cbf8585d4960fe8e576f62a8a22fa25097
parent91b769c48f4cf46d9514770849a1bf9cb33430c3
builtin/apply: add 'lock_file' pointer into 'struct apply_state'

We cannot have a 'struct lock_file' allocated on the stack, as lockfile.c
keeps a linked list of all created lock_file structures.

Also 'struct apply_state' users might later want the same 'struct lock_file'
instance to be reused by different series of calls to the apply api.

So let's add a 'struct lock_file *lock_file' pointer into 'struct apply_state'
and have the user of 'struct apply_state' allocate memory for the actual
'struct lock_file' instance.

Let's also add an argument to init_apply_state(), so that the caller can
easily supply a pointer to the allocated instance.

Helped-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/apply.c