fixed some off-by-one errors; thanks to Markus Dolze for pointing to this

This commit is contained in:
reenoo
2004-04-23 21:21:36 +00:00
parent ef2dfe0aae
commit c1a7807254
+3 -3
View File
@@ -229,7 +229,7 @@ render_frame (LinkedList * list,
if (str_length >= BUFSIZE)
str_length = BUFSIZE - 1;
strncpy (str, w->text, str_length);
str[str_length+1] = 0;
str[str_length] = 0;
drivers_string (w->x + left, w->y + top - fy, str);
}
}
@@ -303,7 +303,7 @@ render_frame (LinkedList * list,
length = BUFSIZE - 1;
if (length <= vis_width - 6) {
strncpy (str, w->text, length);
str[length+1] = 0;
str[length] = 0;
x = length + 5;
} else /* Scroll the title, if it doesn't fit...*/
{
@@ -325,7 +325,7 @@ render_frame (LinkedList * list,
if (str_length >= BUFSIZE)
str_length = BUFSIZE -1;
strncpy (str, w->text + x, str_length);
str[str_length+1] = 0;
str[str_length] = 0;
x = vis_width - 1;
}