aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog4
-rw-r--r--src/xselect.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 906d17535c6..8c80a24b580 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12012-04-24 Chong Yidong <cyd@gnu.org>
2
3 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
4
12012-04-23 Eli Zaretskii <eliz@gnu.org> 52012-04-23 Eli Zaretskii <eliz@gnu.org>
2 6
3 * xdisp.c (pos_visible_p): If the window start position is beyond 7 * xdisp.c (pos_visible_p): If the window start position is beyond
diff --git a/src/xselect.c b/src/xselect.c
index 173cf78bdaa..15ce8d487fa 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -931,6 +931,7 @@ x_convert_selection (struct input_event *event, Lisp_Object selection_symbol,
931 931
932 /* Otherwise, record the converted selection to binary. */ 932 /* Otherwise, record the converted selection to binary. */
933 cs = xmalloc (sizeof (struct selection_data)); 933 cs = xmalloc (sizeof (struct selection_data));
934 cs->data = NULL;
934 cs->nofree = 1; 935 cs->nofree = 1;
935 cs->property = property; 936 cs->property = property;
936 cs->wait_object = NULL; 937 cs->wait_object = NULL;