From: Alok Barsode Date: Thu, 5 Jan 2012 12:41:11 +0000 (+0200) Subject: technology: return a reply even if there are no devices in the technology list. X-Git-Tag: accepted/2.0alpha-wayland/20121110.002834~744 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1b35a1a8bd88f9b04a3daf646b666a369b73e4ac;p=profile%2Fivi%2Fconnman.git technology: return a reply even if there are no devices in the technology list. --- diff --git a/src/technology.c b/src/technology.c index b595e93..0cec893 100644 --- a/src/technology.c +++ b/src/technology.c @@ -892,8 +892,10 @@ int __connman_technology_enable(enum connman_service_type type, DBusMessage *msg * An empty device list means that devices in the technology * were rfkill blocked. The unblock above will enable the devs. */ - if (technology->device_list == NULL) - return 0; + if (technology->device_list == NULL) { + ret = 0; + goto done; + } for (list = technology->device_list; list; list = list->next) { struct connman_device *device = list->data;