diff options
-rw-r--r-- | check-qdict.c | 2 | ||||
-rw-r--r-- | qdict.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/check-qdict.c b/check-qdict.c index c37d448227..f2b4826560 100644 --- a/check-qdict.c +++ b/check-qdict.c @@ -205,6 +205,8 @@ START_TEST(qdict_put_exists_test) value = qdict_get_int(tests_dict, key); fail_unless(value == 2); + + fail_unless(qdict_size(tests_dict) == 1); } END_TEST @@ -122,9 +122,8 @@ void qdict_put_obj(QDict *qdict, const char *key, QObject *value) /* allocate a new entry */ entry = alloc_entry(key, value); QLIST_INSERT_HEAD(&qdict->table[hash], entry, next); + qdict->size++; } - - qdict->size++; } /** |