1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-30 05:59:07 +00:00

font_h could be used uninitialised (so it says)

This commit is contained in:
Phil Sutter 2009-12-17 22:32:28 +01:00
parent bf1e5108ab
commit 861988be24

View File

@ -1208,7 +1208,7 @@ static void draw_string(const char *s)
int draw_each_line_inner(char *s, int special_index, int last_special_applied)
{
#ifdef X11
int font_h;
int font_h = 0;
int cur_y_add = 0;
#endif /* X11 */
char *recurse = 0;