1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-15 09:44:04 +00:00

Fix for segfault in top_name stuff.

This commit is contained in:
Brenden Matthews 2010-10-19 17:36:29 -07:00
parent c9bde0065e
commit 5c555deb64

View File

@ -986,9 +986,11 @@ void print_top(struct text_object *obj, char *p, int p_max_size)
switch (td->type) {
case TOP_NAME:
width = MIN(p_max_size, (int)top_name_width + 1);
snprintf(p, width + 1, "%-*s", width,
needed[td->num]->name);
if (needed[td->num]->name) {
width = MIN(p_max_size, (int)top_name_width + 1);
snprintf(p, width + 1, "%-*s", width,
needed[td->num]->name);
}
break;
case TOP_CPU:
width = MIN(p_max_size, 7);