aboutsummaryrefslogtreecommitdiff
path: root/irc/xchat2/files/patch-src_fe-gtk_xtext.c
diff options
context:
space:
mode:
Diffstat (limited to 'irc/xchat2/files/patch-src_fe-gtk_xtext.c')
-rw-r--r--irc/xchat2/files/patch-src_fe-gtk_xtext.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/irc/xchat2/files/patch-src_fe-gtk_xtext.c b/irc/xchat2/files/patch-src_fe-gtk_xtext.c
new file mode 100644
index 000000000000..d1ed80354b48
--- /dev/null
+++ b/irc/xchat2/files/patch-src_fe-gtk_xtext.c
@@ -0,0 +1,22 @@
+--- src/fe-gtk/xtext.c.orig Thu Sep 18 07:26:52 2003
++++ src/fe-gtk/xtext.c Sat Oct 25 22:31:45 2003
+@@ -2126,6 +2126,7 @@
+ char *stripped;
+ guchar *new_text;
+ int len;
++ gsize glen;
+
+ stripped = gtk_xtext_selection_get_text (xtext, &len);
+ if (!stripped)
+@@ -2158,9 +2159,9 @@
+ }
+ break;
+ default:
+- new_text = g_locale_from_utf8 (stripped, len, NULL, &len, NULL);
++ new_text = g_locale_from_utf8 (stripped, len, NULL, &glen, NULL);
+ gtk_selection_data_set (selection_data_ptr, GDK_SELECTION_TYPE_STRING,
+- 8, new_text, len);
++ 8, new_text, glen);
+ g_free (new_text);
+ }
+