Kaydet (Commit) 81c670d5 authored tarafından Serhiy Storchaka's avatar Serhiy Storchaka

Initialize buf.outobj in multibyte encoder (closes issue #24702).

Patch by pankaj.s01.
üst 04fac8ab
......@@ -478,6 +478,7 @@ multibytecodec_encode(MultibyteCodec *codec,
return PyString_FromString("");
buf.excobj = NULL;
buf.outobj = NULL;
buf.inbuf = buf.inbuf_top = *data;
buf.inbuf_end = buf.inbuf_top + datalen;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment