bt_notification_inactivity_create(): create an empty CC priority map when NULL
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Mon, 17 Jul 2017 20:36:19 +0000 (16:36 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 10 Aug 2017 21:40:26 +0000 (17:40 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
lib/graph/notification/inactivity.c

index fc1d8ad8b022df862db8ce9fe16c0a1f885f6ba8..bb9425cab4fbb9fb62236af26fe055d4b93d63f3 100644 (file)
@@ -55,9 +55,15 @@ struct bt_notification *bt_notification_inactivity_create(
        struct bt_notification_inactivity *notification;
        struct bt_notification *ret_notif = NULL;
 
-       if (!cc_prio_map) {
-               BT_LOGW_STR("Invalid parameter: clock class priority map is NULL.");
-               goto error;
+       if (cc_prio_map) {
+               /* Function's reference, released at the end */
+               bt_get(cc_prio_map);
+       } else {
+               cc_prio_map = bt_clock_class_priority_map_create();
+               if (!cc_prio_map) {
+                       BT_LOGE_STR("Cannot create empty clock class priority map.");
+                       goto error;
+               }
        }
 
        BT_LOGD("Creating inactivity notification object: "
@@ -91,6 +97,7 @@ error:
        BT_PUT(ret_notif);
 
 end:
+       bt_put(cc_prio_map);
        return ret_notif;
 }
 
This page took 0.024777 seconds and 4 git commands to generate.