* grub-core/normal/menu_entry.c (complete): Make sure that width is >0.
This commit is contained in:
parent
a28567364a
commit
5f4028d4a5
2 changed files with 10 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/normal/menu_entry.c (complete): Make sure that width is >0.
|
||||||
|
|
||||||
2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
|
2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
Make char and string width grub_size_t rather than grub_ssize_t.
|
Make char and string width grub_size_t rather than grub_ssize_t.
|
||||||
|
|
|
@ -1029,10 +1029,12 @@ complete (struct screen *screen, int continuous, int update)
|
||||||
if (restore)
|
if (restore)
|
||||||
for (i = 0; i < screen->nterms; i++)
|
for (i = 0; i < screen->nterms; i++)
|
||||||
{
|
{
|
||||||
int width = grub_term_width (screen->terms[i].term) - 2;
|
unsigned width = grub_term_width (screen->terms[i].term);
|
||||||
|
if (width > 2)
|
||||||
|
width -= 2;
|
||||||
if (width > 15)
|
if (width > 15)
|
||||||
width -= 6;
|
width -= 6;
|
||||||
int num_sections = ((completion_buffer.len
|
unsigned num_sections = ((completion_buffer.len
|
||||||
+ width - 1)
|
+ width - 1)
|
||||||
/ width);
|
/ width);
|
||||||
grub_uint32_t *endp;
|
grub_uint32_t *endp;
|
||||||
|
|
Loading…
Reference in a new issue