Skip to content

gst-inspect: Use gst_info_strdup_vprintf to print string

Seungha Yang requested to merge seungha.yang/gstreamer:gst-inspect-printf into master

g_vprintf() will write a string binary to stdout directly using fwrite(). So, depending on character in the string, fwrite to stdout can print broken one but printf family might not cause the issue.

Merge request reports