Avoid buffer overrun in bpress()

Use correct type for Mousekey.b (XButtonEvent.button).
master
Mark Edgar 11 years ago committed by Roberto E. Vargas Caballero
parent 8e577322a3
commit 0f6942cdf6

@ -256,9 +256,9 @@ typedef struct {
} XWindow; } XWindow;
typedef struct { typedef struct {
int b; uint b;
uint mask; uint mask;
char s[ESC_BUF_SIZ]; char *s;
} Mousekey; } Mousekey;
typedef struct { typedef struct {

Loading…
Cancel
Save