]> granicus.if.org Git - python/commitdiff
Use PyOS_snprintf() instead of sprintf().
authorJeremy Hylton <jeremy@alum.mit.edu>
Wed, 28 Nov 2001 21:49:51 +0000 (21:49 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Wed, 28 Nov 2001 21:49:51 +0000 (21:49 +0000)
Modules/cPickle.c

index 17bc7a9af317f1fcc9b5876a75fac896e9167c4b..85fb7cc6ea6e57f3cee7fa718234d85288d558f1 100644 (file)
@@ -669,7 +669,7 @@ get(Picklerobject *self, PyObject *id) {
 
     if (!self->bin) {
         s[0] = GET;
-        sprintf(s + 1, "%ld\n", c_value);
+        PyOS_snprintf(s + 1, sizeof(s) - 1, "%ld\n", c_value);
         len = strlen(s);
     }
     else if (Pdata_Check(self->file)) {
@@ -744,7 +744,7 @@ put2(Picklerobject *self, PyObject *ob) {
 
     if (!self->bin) {
         c_str[0] = PUT;
-        sprintf(c_str + 1, "%d\n", p);
+        PyOS_snprintf(c_str + 1, sizeof(c_str) - 1, "%d\n", p);
         len = strlen(c_str);
     }
     else if (Pdata_Check(self->file)) {
@@ -958,7 +958,7 @@ save_int(Picklerobject *self, PyObject *args) {
          * signed BININT format:  store as a string.
          */
         c_str[0] = INT;
-        sprintf(c_str + 1, "%ld\n", l);
+        PyOS_snprintf(c_str + 1, sizeof(c_str) - 1, "%ld\n", l);
         if ((*self->write_func)(self, c_str, strlen(c_str)) < 0)
             return -1;
     }
@@ -1121,7 +1121,7 @@ save_float(Picklerobject *self, PyObject *args) {
     else {
         char c_str[250];
         c_str[0] = FLOAT;
-        sprintf(c_str + 1, "%.17g\n", x);
+        PyOS_snprintf(c_str + 1, sizeof(c_str) - 1, "%.17g\n", x);
 
         if ((*self->write_func)(self, c_str, strlen(c_str)) < 0)
             return -1;