mirror of
https://gitlab.xiph.org/xiph/icecast-common.git
synced 2025-02-02 15:07:47 -05:00
Fix: Corrected escaping in %H (to MSB first)
This commit is contained in:
parent
f35cc512b4
commit
c5a38dc195
@ -653,8 +653,8 @@ static void __vsnprintf(char *str, size_t size, const char *format, va_list ap)
|
||||
} else {
|
||||
*(str++) = '\\';
|
||||
*(str++) = 'x';
|
||||
*(str++) = hextable[(*arg >> 0) & 0x0F];
|
||||
*(str++) = hextable[(*arg >> 4) & 0x0F];
|
||||
*(str++) = hextable[(*arg >> 0) & 0x0F];
|
||||
/* Also count the additional chars for string size and block length */
|
||||
size -= 3;
|
||||
block_len -= 3;
|
||||
|
Loading…
x
Reference in New Issue
Block a user