[SVACE] 67131,67132 Fixed svace issues 05/68205/2 accepted/tizen_3.0.m2_mobile accepted/tizen_3.0.m2_tv accepted/tizen_3.0.m2_wearable tizen_3.0.m2 tizen_3.0_tv accepted/tizen/3.0.m2/mobile/20170104.122004 accepted/tizen/3.0.m2/tv/20170104.122334 accepted/tizen/3.0.m2/wearable/20170104.122716 accepted/tizen/3.0/common/20161114.105345 accepted/tizen/3.0/ivi/20161011.070402 accepted/tizen/3.0/mobile/20161015.034401 accepted/tizen/3.0/tv/20161016.010131 accepted/tizen/3.0/wearable/20161015.084429 accepted/tizen/common/20160504.130248 accepted/tizen/ivi/20160504.012627 accepted/tizen/mobile/20160504.012535 accepted/tizen/tv/20160504.012552 accepted/tizen/wearable/20160504.012608 submit/tizen/20160503.120331 submit/tizen_3.0.m2/20170104.093749 submit/tizen_3.0_common/20161104.104000 submit/tizen_3.0_ivi/20161010.000008 submit/tizen_3.0_mobile/20161015.000007 submit/tizen_3.0_tv/20161015.000006 submit/tizen_3.0_wearable/20161015.000006
authortaesubkim <taesub.kim@samsung.com>
Tue, 3 May 2016 04:13:43 +0000 (13:13 +0900)
committertaesubkim <taesub.kim@samsung.com>
Tue, 3 May 2016 09:31:34 +0000 (18:31 +0900)
Change-Id: Iba101ceff7a1212f83a47271771c7760bd281804
Signed-off-by: Taesub Kim <taesub.kim@samsung.com>
25 files changed:
AUTHORS [changed mode: 0644->0755]
CMakeLists.txt [changed mode: 0644->0755]
ChangeLog [changed mode: 0644->0755]
LICENSE.APLv2 [changed mode: 0644->0755]
NOTICE [changed mode: 0644->0755]
capi-network-vpn-setting.pc.in [changed mode: 0644->0755]
dvpnlib/include/debug.h [changed mode: 0644->0755]
dvpnlib/include/dvpnlib-common.h [changed mode: 0644->0755]
dvpnlib/include/dvpnlib-internal.h [changed mode: 0644->0755]
dvpnlib/include/dvpnlib-vpn-connection.h [changed mode: 0644->0755]
dvpnlib/include/dvpnlib-vpn-manager.h [changed mode: 0644->0755]
dvpnlib/include/dvpnlib-vpn.h [changed mode: 0644->0755]
dvpnlib/src/dvpnlib-vpn-connnection.c [changed mode: 0644->0755]
dvpnlib/src/dvpnlib-vpn-manager.c [changed mode: 0644->0755]
dvpnlib/src/dvpnlib-vpn.c [changed mode: 0644->0755]
dvpnlib/src/dvpnlib.c [changed mode: 0644->0755]
include/vpn.h [changed mode: 0644->0755]
packaging/capi-network-vpn-setting.manifest [changed mode: 0644->0755]
packaging/capi-network-vpn-setting.spec [changed mode: 0644->0755]
src/include/common.h [changed mode: 0644->0755]
src/include/vpn-internal.h [changed mode: 0644->0755]
src/vpn-internal.c [changed mode: 0644->0755]
src/vpn.c [changed mode: 0644->0755]
test/CMakeLists.txt [changed mode: 0644->0755]
test/vpn_test.c [changed mode: 0644->0755]

diff --git a/AUTHORS b/AUTHORS
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
diff --git a/NOTICE b/NOTICE
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
index 93c28b0..a339fb3
@@ -261,7 +261,10 @@ static void parse_connection_property_user_routes(
        if (g_variant_iter_n_children(&outer) == 0)
                return;
 
-       if (connection->user_routes)
+       if (connection->user_routes == NULL) {
+               ERROR("connection->server_routes is NULL");
+               return;
+       } else
                g_slist_free_full(connection->user_routes,
                                free_vpn_connection_route);
 
@@ -322,7 +325,10 @@ static void parse_connection_property_server_routes(
        if (g_variant_iter_n_children(&outer) == 0)
                return;
 
-       if (connection->server_routes)
+       if (connection->server_routes == NULL) {
+               ERROR("connection->server_routes is NULL");
+               return;
+       } else
                g_slist_free_full(connection->server_routes,
                                free_vpn_connection_route);
 
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
index bb9e28c..f9d2a40
@@ -1,6 +1,6 @@
 Name:       capi-network-vpn-setting
 Summary:    Default VPN Library
-Version:    0.1.0_2
+Version:    0.1.0_3
 Release:    1
 Group:      System/Network
 License:    Apache-2.0
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)