fixed sizeof bug in glew_post.c

git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@145 783a27ee-832a-0410-bc00-9f386506c6dd
This commit is contained in:
ikits 2003-10-01 03:23:35 +00:00
parent 1d139ae0cb
commit d6b4c953bc

View File

@ -15,7 +15,7 @@ const GLubyte* glewGetErrorString (GLenum error)
"GLX 1.2 and up are not supported",
"unknown error"
};
if (error > sizeof(_glewErrorString)) error = sizeof(_glewErrorString);
if (error > 4) error = 4;
return _glewErrorString[error];
}
@ -26,7 +26,7 @@ const GLubyte* glewGetString (GLenum name)
NULL,
"GLEW_VERSION_STRING"
};
if (name > sizeof(_glewString)-1) return NULL;
if (name > 1) name = 0;
return _glewString[name];
}