glapi: use _mesa_snprintf()

Note that the enums.c file is generated with this script.
This will preserve the change from commit
c4066b78c0.
This commit is contained in:
Brian Paul 2010-07-13 07:44:35 -06:00
parent 56da2403fc
commit 672f6cdc19

View file

@ -105,7 +105,8 @@ const char *_mesa_lookup_enum_by_nr( int nr )
}
else {
/* this is not re-entrant safe, no big deal here */
sprintf(token_tmp, "0x%x", nr);
_mesa_snprintf(token_tmp, sizeof(token_tmp) - 1, "0x%x", nr);
token_tmp[sizeof(token_tmp) - 1] = '\\0';
return token_tmp;
}
}