diff options
author | Alex Pilon <alp@alexpilon.ca> | 2015-03-16 11:51:23 -0400 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2015-03-16 20:31:15 +0100 |
commit | b341e513514d50cc995a5646a1bbace65dc4ca67 (patch) | |
tree | c5d2447464367b0765ec875a9e50f27d8586434b | |
parent | 86d1e432a823dad7bb64808b8192014fddc8cd9f (diff) | |
download | st-b341e513514d50cc995a5646a1bbace65dc4ca67.tar.gz st-b341e513514d50cc995a5646a1bbace65dc4ca67.zip |
Handle pasting of empty selection.
Otherwise, pasting the X11 primary selection when empty results an
error and Xlib forcibly exits.
Signed-off-by: Christoph Lohmann <20h@r-36.net>
-rw-r--r-- | st.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -995,6 +995,8 @@ selnotify(XEvent *e) { | |||
995 | 995 | ||
996 | ofs = 0; | 996 | ofs = 0; |
997 | xsev = (XSelectionEvent *)e; | 997 | xsev = (XSelectionEvent *)e; |
998 | if (xsev->property == None) | ||
999 | return; | ||
998 | do { | 1000 | do { |
999 | if(XGetWindowProperty(xw.dpy, xw.win, xsev->property, ofs, | 1001 | if(XGetWindowProperty(xw.dpy, xw.win, xsev->property, ofs, |
1000 | BUFSIZ/4, False, AnyPropertyType, | 1002 | BUFSIZ/4, False, AnyPropertyType, |