Explorar el Código

Avoid buffer overrun in bpress()

Use correct type for Mousekey.b (XButtonEvent.button).
Mark Edgar hace 11 años
padre
commit
0f6942cdf6
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      st.c

+ 2 - 2
st.c

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