Comment #1 on issue 1646 by [email protected]: ibus-bus fails in make check
http://code.google.com/p/ibus/issues/detail?id=1646

./src/tests/ibus-bus.c

lines 857-864

    for (p = engines; *p != NULL; p++) {
        g_assert (IBUS_IS_ENGINE_DESC (*p));
        g_assert_cmpstr (names[i], ==, ibus_engine_desc_get_name (*p));
        i++;
        g_object_unref (*p);
        // The ref should be zero, *p is released.
        g_assert (!IBUS_IS_ENGINE_DESC (*p));
    }

You are doing _unref (*p) and in the next line, IBUS_IS_ENGINE_DESC (*p)

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
--
You received this message because you are subscribed to the Google
Groups "ibus-devel" group.
iBus project web page: http://code.google.com/p/ibus/
iBus dev group: http://groups.google.com/group/ibus-devel?hl=en
--- You received this message because you are subscribed to the Google Groups "ibus-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


回复