summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Andrieu <oliv__a@users.sourceforge.net>2004-08-10 21:32:25 +0000
committerOlivier Andrieu <oliv__a@users.sourceforge.net>2004-08-10 21:32:25 +0000
commiteb37885909180e7e4c25e5337bec385082174dbd (patch)
tree94c0b405df2efd20b624b82ceda980fdf06e3b6b
parentcd33e8dd6227e5f66114178ca1dc0f3677893252 (diff)
* bus/bus.c (process_config_first_time_only): get rid of an unused
DBusError that was causing a memoy leak (bug #989). * dbus/dbus-keyring.c, dbus/dbus-message.c: fix compilation on Solaris/Forte C (bug #974) * bus/main.c (main): plug two minuscule memleaks.
-rw-r--r--ChangeLog10
-rw-r--r--bus/bus.c5
-rw-r--r--bus/main.c2
-rw-r--r--dbus/dbus-keyring.c2
-rw-r--r--dbus/dbus-message.c6
5 files changed, 18 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index f9344e7e..07274282 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2004-08-10 Olivier Andrieu <oliv__a@users.sourceforge.net>
+
+ * bus/bus.c (process_config_first_time_only): get rid of an unused
+ DBusError that was causing a memoy leak (bug #989).
+
+ * dbus/dbus-keyring.c, dbus/dbus-message.c:
+ fix compilation on Solaris/Forte C (bug #974)
+
+ * bus/main.c (main): plug two minuscule memleaks.
+
2004-08-10 Havoc Pennington <hp@redhat.com>
* doc/dbus-tutorial.xml: add some more info on GLib bindings
diff --git a/bus/bus.c b/bus/bus.c
index c732280d..c66b7b36 100644
--- a/bus/bus.c
+++ b/bus/bus.c
@@ -282,17 +282,14 @@ process_config_first_time_only (BusContext *context,
{
DBusString u;
DBusStat stbuf;
- DBusError tmp_error;
- dbus_error_init (&tmp_error);
_dbus_string_init_const (&u, pidfile);
- if (_dbus_stat (&u, &stbuf, &tmp_error))
+ if (_dbus_stat (&u, &stbuf, NULL))
{
dbus_set_error (error, DBUS_ERROR_FAILED,
"The pid file \"%s\" exists, if the message bus is not running, remove this file",
pidfile);
- dbus_error_free (&tmp_error);
goto failed;
}
}
diff --git a/bus/main.c b/bus/main.c
index 391627ff..01a6dd42 100644
--- a/bus/main.c
+++ b/bus/main.c
@@ -351,6 +351,7 @@ main (int argc, char **argv)
print_addr_fd = val;
}
}
+ _dbus_string_free (&addr_fd);
print_pid_fd = -1;
if (print_pid)
@@ -372,6 +373,7 @@ main (int argc, char **argv)
print_pid_fd = val;
}
}
+ _dbus_string_free (&pid_fd);
if (!bus_selinux_init ())
{
diff --git a/dbus/dbus-keyring.c b/dbus/dbus-keyring.c
index d1444350..9877dca6 100644
--- a/dbus/dbus-keyring.c
+++ b/dbus/dbus-keyring.c
@@ -291,7 +291,7 @@ add_new_key (DBusKey **keys_p,
DBusKey *new;
DBusString bytes;
int id;
- unsigned long timestamp;
+ long timestamp;
const unsigned char *s;
dbus_bool_t retval;
DBusKey *keys;
diff --git a/dbus/dbus-message.c b/dbus/dbus-message.c
index dc0a6a64..b191337e 100644
--- a/dbus/dbus-message.c
+++ b/dbus/dbus-message.c
@@ -5480,8 +5480,10 @@ _dbus_message_loader_queue_messages (DBusMessageLoader *loader)
return TRUE;
}
- header_len_unsigned = _dbus_unpack_uint32 (byte_order, header_data + 4);
- body_len_unsigned = _dbus_unpack_uint32 (byte_order, header_data + 8);
+ header_len_unsigned = _dbus_unpack_uint32 (byte_order,
+ (const unsigned char *) header_data + 4);
+ body_len_unsigned = _dbus_unpack_uint32 (byte_order,
+ (const unsigned char *) header_data + 8);
if (header_len_unsigned < 16)
{