Author: akhaldi
Date: Mon Oct 7 14:03:34 2013
New Revision: 60577
URL:
http://svn.reactos.org/svn/reactos?rev=60577&view=rev
Log:
[MESA]
* Fix MSVC build.
Modified:
trunk/reactos/dll/opengl/mesa/src/mesa/main/extensions.c
Modified: trunk/reactos/dll/opengl/mesa/src/mesa/main/extensions.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/opengl/mesa/src/mesa/m…
==============================================================================
--- trunk/reactos/dll/opengl/mesa/src/mesa/main/extensions.c [iso-8859-1] (original)
+++ trunk/reactos/dll/opengl/mesa/src/mesa/main/extensions.c [iso-8859-1] Mon Oct 7
14:03:34 2013
@@ -454,7 +454,7 @@
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;