service: Add function to remove a service
[framework/connectivity/connman.git] / src / ippool.c
index 968d20f..58a0d28 100644 (file)
@@ -296,7 +296,7 @@ update:
                if (!(it->start <= info->start || info->start <= it->end))
                        continue;
 
-               if (it->pool->collision_cb != NULL)
+               if (it->pool != NULL && it->pool->collision_cb != NULL)
                        it->pool->collision_cb(it->pool, it->pool->user_data);
 
                return;
@@ -323,7 +323,7 @@ void __connman_ippool_deladdr(int index, const char *address,
        info = lookup_info(index, start);
        if (info == NULL) {
                /* In theory this should never happen */
-               connman_error("Inconsisten IP pool management (start not found)");
+               connman_error("Inconsistent IP pool management (start not found)");
                return;
        }