Re: [PATCH] line-log: fix crash when --first-parent is used

2014-11-04 Thread Michael J Gruber
Tzvetan Mikov schrieb am 03.11.2014 um 23:09: > On Mon, Nov 3, 2014 at 12:58 PM, Junio C Hamano wrote: > >>> line-log tries to access all parents of a commit, but only the first >>> parent has been loaded if "--first-parent" is specified, resulting >>> in a crash. >>> >>> Limit the number of pare

Re: [PATCH] line-log: fix crash when --first-parent is used

2014-11-03 Thread Tzvetan Mikov
On Mon, Nov 3, 2014 at 12:58 PM, Junio C Hamano wrote: >> line-log tries to access all parents of a commit, but only the first >> parent has been loaded if "--first-parent" is specified, resulting >> in a crash. >> >> Limit the number of parents to one if "--first-parent" is specified. >> > [...

Re: [PATCH] line-log: fix crash when --first-parent is used

2014-11-03 Thread Junio C Hamano
Tzvetan Mikov writes: > line-log tries to access all parents of a commit, but only the first > parent has been loaded if "--first-parent" is specified, resulting > in a crash. > > Limit the number of parents to one if "--first-parent" is specified. > > Reported-by: Eric N. Vander Weele > Signed-

[PATCH] line-log: fix crash when --first-parent is used

2014-10-31 Thread Tzvetan Mikov
line-log tries to access all parents of a commit, but only the first parent has been loaded if "--first-parent" is specified, resulting in a crash. Limit the number of parents to one if "--first-parent" is specified. Reported-by: Eric N. Vander Weele Signed-off-by: Tzvetan Mikov --- line-log.c