diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2006-05-09 14:51:57 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2006-05-09 14:51:57 +0000 |
commit | 2b3aab071760c15abfbd99c070cf368d715e5173 (patch) | |
tree | ca2730ae6a49b3ca69abb5ea8829826ed5127f08 /src/glut | |
parent | ab13ec10ebd6f35286db93752739246076e0edb9 (diff) |
check event button against GLUT_MAX_MENUS (bug 1484284)
Diffstat (limited to 'src/glut')
-rw-r--r-- | src/glut/glx/glut_event.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/glut/glx/glut_event.c b/src/glut/glx/glut_event.c index e453fe0389..f997f772c7 100644 --- a/src/glut/glx/glut_event.c +++ b/src/glut/glx/glut_event.c @@ -438,7 +438,8 @@ processEventsAndTimeouts(void) __glutFinishMenu(event.xbutton.window, event.xbutton.x, event.xbutton.y); } else { window = __glutGetWindow(event.xbutton.window); - if (window) { + /* added button check for mice with > 3 buttons */ + if (window && event.xbutton.button <= GLUT_MAX_MENUS) { GLUTmenu *menu; int menuNum; |