On Wednesday 24 January 2007 21:51, Ken Thomases wrote:
- WineGLInfo.glExtensions = strdup((const char *)
pglGetString(GL_EXTENSIONS));
Shouldn't this be free'd somewhere? What about the other strings?
The problem with this string is that it depends on the presence of a GLX context which isn't the case for the other strings. This caused problems on OSX where the data got freed after releasing a context.
Roderick