Reducing an allocation to what is actually needed.
This undoes the papering-over of the just-fixed bug. git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5655 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
0f64fe0af2
commit
acf19bde22
|
@ -4,6 +4,8 @@
|
||||||
This fixes Savannah bug #47124 reported by Mike Frysinger.
|
This fixes Savannah bug #47124 reported by Mike Frysinger.
|
||||||
* src/files.c (input_tab): Parse a character in the correct
|
* src/files.c (input_tab): Parse a character in the correct
|
||||||
buffer. This fixes Savannah bug #47199.
|
buffer. This fixes Savannah bug #47199.
|
||||||
|
* src/prompt.c (do_statusbar_output): Reduce an allocation to what
|
||||||
|
is actually needed. This undoes the papering-over of above bug.
|
||||||
|
|
||||||
2016-02-18 Benno Schulenberg <bensberg@justemail.net>
|
2016-02-18 Benno Schulenberg <bensberg@justemail.net>
|
||||||
* src/search.c (do_replace_loop), src/text.c (do_int_spell_fix),
|
* src/search.c (do_replace_loop), src/text.c (do_int_spell_fix),
|
||||||
|
|
|
@ -285,7 +285,7 @@ void do_statusbar_output(int *the_input, size_t input_len,
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
/* More dangerousness fun. =) */
|
/* More dangerousness fun. =) */
|
||||||
answer = charealloc(answer, answer_len + (char_buf_len * 2));
|
answer = charealloc(answer, answer_len + char_buf_len + 1);
|
||||||
|
|
||||||
assert(statusbar_x <= answer_len);
|
assert(statusbar_x <= answer_len);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue