Coverity #459: Silly off-by-one error.

This commit is contained in:
Adam Jackson 2006-04-03 00:18:03 +00:00
parent 5ab5517ba8
commit b927a75979

View file

@ -104,7 +104,7 @@ _gl_convert_to_x_visual_type( int visualType )
GrayScale, StaticGray
};
return ( (unsigned) (visualType - GLX_TRUE_COLOR) <= NUM_VISUAL_TYPES )
return ( (unsigned) (visualType - GLX_TRUE_COLOR) < NUM_VISUAL_TYPES )
? x_visual_types[ visualType - GLX_TRUE_COLOR ] : -1;
}