summaryrefslogtreecommitdiff
path: root/udscs.c
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2010-09-30 20:12:08 +0200
committerHans de Goede <hdegoede@redhat.com>2010-09-30 20:35:31 +0200
commit47bbf580799c3cdc9a8db801d6778ec643eea19d (patch)
tree7d097aa025c7f515f5f90dc37c5bcd71ccbae60e /udscs.c
parent10ac0a50162041b4733c7432a3e16e63a6c3be68 (diff)
3 copy and paste fixes
1) Deal with receiving an ownership change event before querying the targets of the previous owner is complete 2) Fix an ugly bug in handle_selection_notify where it would send the data type using an uninitialized variable 3) Fix a small memleak
Diffstat (limited to 'udscs.c')
-rw-r--r--udscs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/udscs.c b/udscs.c
index f821f22..46e3eed 100644
--- a/udscs.c
+++ b/udscs.c
@@ -387,7 +387,7 @@ int udscs_write(struct udscs_connection *conn, uint32_t type, uint32_t opaque,
return 0;
}
- /* FIXME maybe limit the write_buf stack depth ? */
+ /* maybe we should limit the write_buf stack depth ? */
wbuf = conn->write_buf;
while (wbuf->next)
wbuf = wbuf->next;