[PATCH 2/2] fetch: use argv_array instead of hand-building arrays

2012-09-01 Thread Jeff King
Fetch invokes itself recursively when recursing into submodules or handling fetch --multiple. In both cases, it builds the child's command line by pushing options onto a statically-sized array. In both cases, the array is currently just big enough to handle the largest possible case. However, this

Re: [PATCH 2/2] fetch: use argv_array instead of hand-building arrays

2012-09-01 Thread Jens Lehmann
Am 01.09.2012 13:27, schrieb Jeff King: Fetch invokes itself recursively when recursing into submodules or handling fetch --multiple. In both cases, it builds the child's command line by pushing options onto a statically-sized array. In both cases, the array is currently just big enough to