@@ -373,8 +373,7 @@ QDict *qdict_clone_shallow(const QDict *src)
373
373
374
374
for (i = 0 ; i < QDICT_BUCKET_MAX ; i ++ ) {
375
375
QLIST_FOREACH (entry , & src -> table [i ], next ) {
376
- qobject_ref (entry -> value );
377
- qdict_put_obj (dest , entry -> key , entry -> value );
376
+ qdict_put_obj (dest , entry -> key , qobject_ref (entry -> value ));
378
377
}
379
378
}
380
379
@@ -480,8 +479,7 @@ void qdict_copy_default(QDict *dst, QDict *src, const char *key)
480
479
481
480
val = qdict_get (src , key );
482
481
if (val ) {
483
- qobject_ref (val );
484
- qdict_put_obj (dst , key , val );
482
+ qdict_put_obj (dst , key , qobject_ref (val ));
485
483
}
486
484
}
487
485
@@ -526,8 +524,7 @@ static void qdict_flatten_qlist(QList *qlist, QDict *target, const char *prefix)
526
524
qdict_flatten_qlist (qobject_to (QList , value ), target , new_key );
527
525
} else {
528
526
/* All other types are moved to the target unchanged. */
529
- qobject_ref (value );
530
- qdict_put_obj (target , new_key , value );
527
+ qdict_put_obj (target , new_key , qobject_ref (value ));
531
528
}
532
529
533
530
g_free (new_key );
@@ -566,8 +563,7 @@ static void qdict_flatten_qdict(QDict *qdict, QDict *target, const char *prefix)
566
563
delete = true;
567
564
} else if (prefix ) {
568
565
/* All other objects are moved to the target unchanged. */
569
- qobject_ref (value );
570
- qdict_put_obj (target , new_key , value );
566
+ qdict_put_obj (target , new_key , qobject_ref (value ));
571
567
delete = true;
572
568
}
573
569
@@ -610,8 +606,7 @@ void qdict_extract_subqdict(QDict *src, QDict **dst, const char *start)
610
606
while (entry != NULL ) {
611
607
next = qdict_next (src , entry );
612
608
if (strstart (entry -> key , start , & p )) {
613
- qobject_ref (entry -> value );
614
- qdict_put_obj (* dst , p , entry -> value );
609
+ qdict_put_obj (* dst , p , qobject_ref (entry -> value ));
615
610
qdict_del (src , entry -> key );
616
611
}
617
612
entry = next ;
@@ -894,16 +889,14 @@ QObject *qdict_crumple(const QDict *src, Error **errp)
894
889
qdict_put_obj (two_level , prefix , QOBJECT (child_dict ));
895
890
}
896
891
897
- qobject_ref (ent -> value );
898
- qdict_put_obj (child_dict , suffix , ent -> value );
892
+ qdict_put_obj (child_dict , suffix , qobject_ref (ent -> value ));
899
893
} else {
900
894
if (child ) {
901
895
error_setg (errp , "Key %s prefix is already set as a dict" ,
902
896
prefix );
903
897
goto error ;
904
898
}
905
- qobject_ref (ent -> value );
906
- qdict_put_obj (two_level , prefix , ent -> value );
899
+ qdict_put_obj (two_level , prefix , qobject_ref (ent -> value ));
907
900
}
908
901
909
902
g_free (prefix );
@@ -924,8 +917,7 @@ QObject *qdict_crumple(const QDict *src, Error **errp)
924
917
925
918
qdict_put_obj (multi_level , ent -> key , child );
926
919
} else {
927
- qobject_ref (ent -> value );
928
- qdict_put_obj (multi_level , ent -> key , ent -> value );
920
+ qdict_put_obj (multi_level , ent -> key , qobject_ref (ent -> value ));
929
921
}
930
922
}
931
923
qobject_unref (two_level );
@@ -951,8 +943,7 @@ QObject *qdict_crumple(const QDict *src, Error **errp)
951
943
goto error ;
952
944
}
953
945
954
- qobject_ref (child );
955
- qlist_append_obj (qobject_to (QList , dst ), child );
946
+ qlist_append_obj (qobject_to (QList , dst ), qobject_ref (child ));
956
947
}
957
948
qobject_unref (multi_level );
958
949
multi_level = NULL ;
@@ -1055,8 +1046,7 @@ void qdict_join(QDict *dest, QDict *src, bool overwrite)
1055
1046
next = qdict_next (src , entry );
1056
1047
1057
1048
if (overwrite || !qdict_haskey (dest , entry -> key )) {
1058
- qobject_ref (entry -> value );
1059
- qdict_put_obj (dest , entry -> key , entry -> value );
1049
+ qdict_put_obj (dest , entry -> key , qobject_ref (entry -> value ));
1060
1050
qdict_del (src , entry -> key );
1061
1051
}
1062
1052
@@ -1088,8 +1078,7 @@ bool qdict_rename_keys(QDict *qdict, const QDictRenames *renames, Error **errp)
1088
1078
}
1089
1079
1090
1080
qobj = qdict_get (qdict , renames -> from );
1091
- qobject_ref (qobj );
1092
- qdict_put_obj (qdict , renames -> to , qobj );
1081
+ qdict_put_obj (qdict , renames -> to , qobject_ref (qobj ));
1093
1082
qdict_del (qdict , renames -> from );
1094
1083
}
1095
1084
0 commit comments