Fix a buffer overflow that makes the component crash on aarch64.

[GB.GTK3]
* BUG: Fix a buffer overflow that makes the component crash on aarch64.
This commit is contained in:
gambas 2020-12-12 22:44:57 +01:00
parent c316cbaaf1
commit e61e7583bc

View file

@ -2084,7 +2084,7 @@ void gControl::updateStyleSheet()
char *css_str;
int s;
gColor fg;
char buffer[16];
char buffer[32];
wid = getStyleSheetWidget();
context = gtk_widget_get_style_context(wid);