mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-05 08:48:07 +02:00
Fix using uninitialized value "name" in _dbus_combine_tcp_errors
Coverity CID 265359. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=61922 Reviewed-by: Simon McVittie <smcv@collabora.com>
This commit is contained in:
parent
00babc0bae
commit
a3bc4392be
1 changed files with 1 additions and 1 deletions
|
|
@ -925,7 +925,7 @@ _dbus_combine_tcp_errors (DBusList **sources,
|
|||
else
|
||||
{
|
||||
DBusList *iter;
|
||||
const char *name;
|
||||
const char *name = NULL;
|
||||
|
||||
/* If there was more than one error, concatenate all the
|
||||
* errors' diagnostic messages, and use their common error
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue