summaryrefslogtreecommitdiffstats
path: root/dbus/dbus-marshal-recursive-util.c
diff options
context:
space:
mode:
authorJohn (J5) Palmieri <johnp@redhat.com>2006-09-11 14:42:48 +0000
committerJohn (J5) Palmieri <johnp@redhat.com>2006-09-11 14:42:48 +0000
commiteed8a8a7bd11f1d070b441675f4c498dd07a78c2 (patch)
tree4ca3cce0c4ce1306ac33b2161065aefbcddcef77 /dbus/dbus-marshal-recursive-util.c
parent8e659dac9fd5585c7b4ade836e09c22227d9ddc6 (diff)
* dbus/dbus-marshal-recursive-util.c, dbus/dbus-marshal-recursive.c:
remove DBusMark
Diffstat (limited to 'dbus/dbus-marshal-recursive-util.c')
-rw-r--r--dbus/dbus-marshal-recursive-util.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/dbus/dbus-marshal-recursive-util.c b/dbus/dbus-marshal-recursive-util.c
index c2e9b411..e73edf49 100644
--- a/dbus/dbus-marshal-recursive-util.c
+++ b/dbus/dbus-marshal-recursive-util.c
@@ -983,23 +983,11 @@ node_read_value (TestTypeNode *node,
DBusTypeReader *reader,
int seed)
{
- DBusTypeMark mark;
DBusTypeReader restored;
- _dbus_type_reader_save_mark (reader, &mark);
-
if (!(* node->klass->read_value) (node, reader, seed))
return FALSE;
- _dbus_type_reader_init_from_mark (&restored,
- reader->byte_order,
- reader->type_str,
- reader->value_str,
- &mark);
-
- if (!(* node->klass->read_value) (node, &restored, seed))
- return FALSE;
-
return TRUE;
}