Avoid unsigned integer underflow in drw_text()

This commit is contained in:
Raymond Cole 2024-10-28 00:34:55 +00:00 committed by Hiltjo Posthuma
parent fcb2476b69
commit cfb8627a80
1 changed files with 2 additions and 0 deletions

2
drw.c
View File

@ -248,6 +248,8 @@ drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h, unsigned int lp
} else {
XSetForeground(drw->dpy, drw->gc, drw->scheme[invert ? ColFg : ColBg].pixel);
XFillRectangle(drw->dpy, drw->drawable, drw->gc, x, y, w, h);
if (w < lpad)
return x + w;
d = XftDrawCreate(drw->dpy, drw->drawable,
DefaultVisual(drw->dpy, drw->screen),
DefaultColormap(drw->dpy, drw->screen));