mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
[MESA]
* Fix MSVC build. svn path=/trunk/; revision=60577
This commit is contained in:
parent
c73334d7d3
commit
12466faa47
1 changed files with 1 additions and 1 deletions
|
@ -454,7 +454,7 @@ get_extension_override( struct gl_context *ctx )
|
|||
extra_exts = calloc(ALIGN(strlen(env_const) + 2, 4), sizeof(char));
|
||||
|
||||
/* Copy env_const because strtok() is destructive. */
|
||||
env = strdup(env_const);
|
||||
env = _strdup(env_const);
|
||||
for (ext = strtok(env, " "); ext != NULL; ext = strtok(NULL, " ")) {
|
||||
int enable;
|
||||
int recognized;
|
||||
|
|
Loading…
Reference in a new issue