libpq: Fix PQtrace() format for non-printable characters
authorMichael Paquier <michael@paquier.xyz>
Wed, 3 Sep 2025 03:54:34 +0000 (12:54 +0900)
committerMichael Paquier <michael@paquier.xyz>
Wed, 3 Sep 2025 03:54:34 +0000 (12:54 +0900)
commit0cc540f0d03f280625ea9cda4d43bd79b5f8321d
tree1de47451ec052c4cc407970da69b28f865eb24d9
parentb830f9d67463f770e7c92ac989112c90c1f28dbf
libpq: Fix PQtrace() format for non-printable characters

PQtrace() was generating its output for non-printable characters without
casting the characters printed with unsigned char, leading to some extra
"\xffffff" generated in the output due to the fact that char may be
signed.

Oversights introduced by commit 198b3716dba6, so backpatch down to v14.

Author: Ran Benita <ran@unusedvar.com>
Discussion: https://postgr.es/m/a3383211-4539-459b-9d51-95c736ef08e0@app.fastmail.com
Backpatch-through: 14
src/interfaces/libpq/fe-trace.c