Re: [PATCH] _scanf.c: Implement 'm' modifier for 'c' and '[' conversions.

2015-05-06 Thread Bernhard Reutner-Fischer
On 28 April 2015 at 07:36, Max Filippov jcmvb...@gmail.com wrote: From: Will Newton will.new...@imgtec.com The current code implements the 'm' modifier only for 's' conversions and would cause a segfault if it was used for 'c' or '[' conversions. This patch extends the code to cover these

[PATCH] _scanf.c: Implement 'm' modifier for 'c' and '[' conversions.

2015-04-27 Thread Max Filippov
From: Will Newton will.new...@imgtec.com The current code implements the 'm' modifier only for 's' conversions and would cause a segfault if it was used for 'c' or '[' conversions. This patch extends the code to cover these cases too. The original version could write scanned data outside the

Re: [PATCH] _scanf.c: Implement 'm' modifier for 'c' and '[' conversions.

2012-10-23 Thread Will Newton
Ping? On Tue, Oct 16, 2012 at 12:00 PM, Will Newton will.new...@gmail.com wrote: The current code implements the 'm' modifier only for 's' conversions and would cause a segfault if it was used for 'c' or '[' conversions. This patch extends the code to cover these cases too. Signed-off-by:

[PATCH] _scanf.c: Implement 'm' modifier for 'c' and '[' conversions.

2012-10-16 Thread Will Newton
The current code implements the 'm' modifier only for 's' conversions and would cause a segfault if it was used for 'c' or '[' conversions. This patch extends the code to cover these cases too. Signed-off-by: Will Newton will.new...@imgtec.com --- libc/stdio/_scanf.c | 51