winex11.drv: Copy the GL extensions string because it may be freed.

This commit is contained in:
Ken Thomases 2007-01-24 23:51:24 -06:00 committed by Alexandre Julliard
parent 85410f2ac1
commit a790ff5568
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ static BOOL X11DRV_WineGL_InitOpenglInfo(void)
}
WineGLInfo.glVersion = (const char *) pglGetString(GL_VERSION);
WineGLInfo.glExtensions = (const char *) pglGetString(GL_EXTENSIONS);
WineGLInfo.glExtensions = strdup((const char *) pglGetString(GL_EXTENSIONS));
/* Get the common GLX version supported by GLX client and server ( major/minor) */
pglXQueryVersion(gdi_display, &WineGLInfo.glxVersion[0], &WineGLInfo.glxVersion[1]);