Re: [PATCH 3/3] stop_progress_msg: convert xsnprintf to git_psprintf

2017-02-16 Thread Jeff King
On Thu, Feb 16, 2017 at 02:28:29PM +0300, Maxim Moseychuk wrote: > Replace local safe string buffer allocation by git_psprintf. Hmm. Is this one actually broken in practice? I see: > @@ -243,21 +243,18 @@ void stop_progress_msg(struct progress **p_progress, > const char *msg) > *p_progre

[PATCH 3/3] stop_progress_msg: convert xsnprintf to git_psprintf

2017-02-16 Thread Maxim Moseychuk
Replace local safe string buffer allocation by git_psprintf. Signed-off-by: Maxim Moseychuk --- progress.c | 9 +++-- 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/progress.c b/progress.c index 76a88c573..989d65504 100644 --- a/progress.c +++ b/progress.c @@ -243,21 +243,18 @