summaryrefslogtreecommitdiffstats
path: root/Objects/bytesobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/bytesobject.c')
-rw-r--r--Objects/bytesobject.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c
index 701ae9d..296c73b 100644
--- a/Objects/bytesobject.c
+++ b/Objects/bytesobject.c
@@ -438,6 +438,7 @@ formatfloat(PyObject *v, int flags, int prec, int type,
if (str == NULL)
return NULL;
Py_MEMCPY(str, p, len);
+ PyMem_Free(p);
str += len;
return str;
}