mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-12-28 04:55:08 +00:00
font_h could be used uninitialised (so it says)
This commit is contained in:
parent
bf1e5108ab
commit
861988be24
@ -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)
|
int draw_each_line_inner(char *s, int special_index, int last_special_applied)
|
||||||
{
|
{
|
||||||
#ifdef X11
|
#ifdef X11
|
||||||
int font_h;
|
int font_h = 0;
|
||||||
int cur_y_add = 0;
|
int cur_y_add = 0;
|
||||||
#endif /* X11 */
|
#endif /* X11 */
|
||||||
char *recurse = 0;
|
char *recurse = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user