Commit 96f27ac8 authored by Claes Sjofors's avatar Claes Sjofors

Xtt op fix for uninitialized string

parent fa5e232c
...@@ -730,7 +730,7 @@ void OpGtk::update_alarm_info() ...@@ -730,7 +730,7 @@ void OpGtk::update_alarm_info()
int height, active_height; int height, active_height;
char str[40]; char str[40];
char text[500], ctext[500]; char text[500], ctext[500];
char timestr[40]; char timestr[40] = "";
int fsize = text_size * 1024; int fsize = text_size * 1024;
int show_time = 0; int show_time = 0;
time_eFormat time_format; time_eFormat time_format;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment