GNOME Bugzilla – Bug 615003
_edomain and _ecode possibly used uninitialized warnings in dbusclientmodule
Last modified: 2010-10-13 20:44:38 UTC
file: valadbusclientmodule.vala method: check_error_reply The vars _edomain and _ecode are created without an initial value. The following code does not in all cases set a default value. Both vars are then passed to g_set_error resulting in a compiler warning about usage of an uninitialized variable. In libfso-glib of the freesmartphone.org-project this results in 946 warnings about this.
commit 00b8e2e75b6d3df948aae6139c710e9e6f7c7c8d Author: Jürg Billeter <j@bitron.ch> Date: Wed Oct 13 22:41:08 2010 +0200 D-Bus: Fix use of uninitialized variables in dbus-glib error handling Fixes bug 615003.