Always NUL terminate buf in OBJ_obj2txt()
authortb <tb@openbsd.org>
Tue, 23 May 2023 11:04:04 +0000 (11:04 +0000)
committertb <tb@openbsd.org>
Tue, 23 May 2023 11:04:04 +0000 (11:04 +0000)
commit04bfea2a9ceb89b409706a2dfd614cd46b3b785f
treec18e3040e757110a4caa3fc16c57061dae5b1878
parentc3b72fabfdf1a25eafa214a4ef60513f2cf4c631
Always NUL terminate buf in OBJ_obj2txt()

OBJ_obj2txt() is often called without error checking and is used for
reporting unexpected or malformed objects. As such, we should ensure
buf is a string even on failure. This had long been the case before it
was lost in a recent rewrite. If obj and obj->data are both non-NULL
this is already taken care of by i2t_ASN1_OBJECT_internal(), so many
callers were still safe.

ok miod
lib/libcrypto/objects/obj_dat.c