Mesa (master): glapi: use _mesa_snprintf()

Brian Paul brianp at kemper.freedesktop.org
Tue Jul 13 13:46:29 UTC 2010


Module: Mesa
Branch: master
Commit: 672f6cdc19c5f89d85e20dc04bacb5a7905ff334
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=672f6cdc19c5f89d85e20dc04bacb5a7905ff334

Author: Brian Paul <brianp at vmware.com>
Date:   Tue Jul 13 07:44:35 2010 -0600

glapi: use _mesa_snprintf()

Note that the enums.c file is generated with this script.
This will preserve the change from commit
c4066b78c0aad41c199eb27157538c2ec9ab5bfd.

---

 src/mapi/glapi/gen/gl_enums.py |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/mapi/glapi/gen/gl_enums.py b/src/mapi/glapi/gen/gl_enums.py
index 644e085..0caa010 100644
--- a/src/mapi/glapi/gen/gl_enums.py
+++ b/src/mapi/glapi/gen/gl_enums.py
@@ -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;
    }
 }




More information about the mesa-commit mailing list