On 30.11.2014 16:47, Junio C Hamano wrote:
> Eric Sunshine <[email protected]> writes:
>
>> On Thu, Nov 27, 2014 at 1:44 PM, Michael Blume <[email protected]> wrote:
>>> The variable index seems to be unused/uninitialized now -- it's still
>>> printed in debug messages, but if I'm reading correctly, its contents are
>>> going to be nonsense.
>>
>> Nice catch.
>
> Let's do something like this squashed in, then.
Michael, thanks for catching that!
Junio, the squash-in looks fine with me.
>
> mailmap.c | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/mailmap.c b/mailmap.c
> index 3b00a65..cb26af0 100644
> --- a/mailmap.c
> +++ b/mailmap.c
> @@ -90,8 +90,8 @@ static void add_mapping(struct string_list *map,
> }
>
> if (old_name == NULL) {
> - debug_mm("mailmap: adding (simple) entry for %s at index %d\n",
> - old_email, index);
> + debug_mm("mailmap: adding (simple) entry for '%s'\n",
> old_email);
> +
> /* Replace current name and new email for simple entry */
> if (new_name) {
> free(me->name);
> @@ -103,8 +103,7 @@ static void add_mapping(struct string_list *map,
> }
> } else {
> struct mailmap_info *mi = xcalloc(1, sizeof(struct
> mailmap_info));
> - debug_mm("mailmap: adding (complex) entry for %s at index %d\n",
> - old_email, index);
> + debug_mm("mailmap: adding (complex) entry for '%s'\n",
> old_email);
> if (new_name)
> mi->name = xstrdup(new_name);
> if (new_email)
> --
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to [email protected]
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html