0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-09-24 01:22:33 +00:00
Files
termux-packages/x11-packages/cinnamon/0011-fix-null-text-issue.patch
2025-09-02 04:43:02 -05:00

13 lines
318 B
Diff

diff --git a/src/st/st-label.c b/src/st/st-label.c
index bf5c147..bc30a59 100644
--- a/src/st/st-label.c
+++ b/src/st/st-label.c
@@ -348,6 +348,7 @@ void
st_label_set_text (StLabel *label,
const gchar *text)
{
+ if (text == NULL) text = "";
StLabelPrivate *priv;
ClutterText *ctext;