Fixed memory leak in error branch of formatfloat(). CID 719687
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 2795168..2d74d1c 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -13238,8 +13238,10 @@
return -1;
len = strlen(p);
if (writer) {
- if (_PyUnicodeWriter_Prepare(writer, len, 127) == -1)
+ if (_PyUnicodeWriter_Prepare(writer, len, 127) == -1) {
+ PyMem_Free(p);
return -1;
+ }
unicode_write_cstr(writer->buffer, writer->pos, p, len);
writer->pos += len;
}