[SVACE][TIZEN_3.0_Wearable][Critical][WGID 72171] DEREF_OF_NULL 18/65518/1 accepted/tizen/common/20160411.130828 accepted/tizen/ivi/20160412.005858 accepted/tizen/mobile/20160412.005853 accepted/tizen/tv/20160412.005803 accepted/tizen/wearable/20160412.005824 submit/tizen/20160411.105802
authorSeonah Moon <seonah1.moon@samsung.com>
Mon, 11 Apr 2016 10:19:30 +0000 (19:19 +0900)
committerSeonah Moon <seonah1.moon@samsung.com>
Mon, 11 Apr 2016 10:19:42 +0000 (19:19 +0900)
Change-Id: I64c176bf1297a16ad2395822b9e95676939393b8
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
packaging/capi-network-tethering.spec
src/tethering.c

index 959bcdb..02894c1 100644 (file)
@@ -1,6 +1,6 @@
 Name:          capi-network-tethering
 Summary:       Tethering Framework
-Version:       1.0.32
+Version:       1.0.33
 Release:       1
 Group:         System/Network
 License:       Apache-2.0
index 5c39b85..e161cb3 100755 (executable)
@@ -1560,7 +1560,8 @@ API int tethering_create(tethering_h *tethering)
                        NULL, TETHERING_SERVICE_NAME, TETHERING_SERVICE_OBJECT_PATH,
                        TETHERING_SERVICE_INTERFACE, th->cancellable, &error);
        if (!th->client_bus_proxy) {
-               ERR("Couldn't create the proxy object because of %s\n", error->message);
+               if (error)
+                       ERR("Couldn't create the proxy object because of %s\n", error->message);
                g_cancellable_cancel(th->cancellable);
                g_object_unref(th->cancellable);
                g_object_unref(th->client_bus);