mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-24 20:20:27 +01:00
string_squash_nonprintable: correct signedness mismatch
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=93069 Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> Reviewed-by: Ralf Habacker <ralf.habacker@freenet.de>
This commit is contained in:
parent
15868d2a39
commit
5d67d56f5f
1 changed files with 1 additions and 1 deletions
|
|
@ -1177,7 +1177,7 @@ string_squash_nonprintable (DBusString *str)
|
|||
unsigned char *buf;
|
||||
int i, len;
|
||||
|
||||
buf = _dbus_string_get_data (str);
|
||||
buf = _dbus_string_get_udata (str);
|
||||
len = _dbus_string_get_length (str);
|
||||
|
||||
for (i = 0; i < len; i++)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue