git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@116
7f0cb862-5218-0410-a997-
914c9d46530a
*******************************************************************************************
(83) Now installs freeglut_ext.h and glut.h to /usr/include/GL (was missing before)
+
+
+*******************************************************************************************
+* Changes on 01 July 2003
+*******************************************************************************************
+
+(84) Fixed the 'ptr + len' problem in freeglut_misc.c:90
/*
* No, go find the next extension. They are separated from each other by one or more blank spaces.
*/
- ptr = strchr ( ptr + len, ' ' ) ;
+ ptr = strchr ( ptr, ' ' ) ;
/*
* If we ran off the end of the "extensions" character string, we didn't find it. Return failure.