From: Aurélien Aptel Date: Thu, 9 Jun 2011 12:27:07 +0000 (+0200) Subject: fix segfault with mouse selection. (thx anonymous) X-Git-Url: https://jasonwoof.com/gitweb/?p=st.git;a=commitdiff_plain;h=cddbd6eee59104a029087c30f9ff5e7e415bc584 fix segfault with mouse selection. (thx anonymous) --- diff --git a/st.c b/st.c index b331ead..df8353a 100644 --- a/st.c +++ b/st.c @@ -615,7 +615,7 @@ bmotion(XEvent *e) { if(oldey != sel.ey || oldex != sel.ex) { int starty = MIN(oldey, sel.ey); int endy = MAX(oldey, sel.ey); - drawregion(0, (starty > 0 ? starty : 0), term.col, (sel.ey < term.row ? endy+1 : term.row)); + drawregion(0, (starty > 0 ? starty : 0), term.col, (endy < term.row ? endy+1 : term.row)); } } }