[WGID-14981, 171089, 260155] bug fix 97/150697/1 accepted/tizen/unified/20170920.081241 submit/tizen/20170918.114609
authorSeonah Moon <seonah1.moon@samsung.com>
Fri, 15 Sep 2017 08:29:15 +0000 (17:29 +0900)
committerSeonah Moon <seonah1.moon@samsung.com>
Mon, 18 Sep 2017 09:15:26 +0000 (18:15 +0900)
Change-Id: Id39c1a5c572a625ee5142cc10f8e4b73ae3bf606

packaging/wifi-efl-ug.spec
sources/ui-gadget/viewers-layout/viewer_manager.c
sources/ui-gadget/viewers-layout/wifi_viewer_list.c
sources/wifi-syspopup/viewer-popups/view-main.c

index 1616d7e..4832ac0 100644 (file)
@@ -1,6 +1,6 @@
 Name:          wifi-efl-ug
 Summary:       Wi-Fi UI Gadget for TIZEN
-Version:       1.0.233
+Version:       1.0.234
 Release:       1
 Group:         App/Network
 License:       Flora-1.1
index ec135af..96e6834 100755 (executable)
@@ -447,8 +447,6 @@ static void _ctxpopup_move(Evas_Object *parent)
 
        if (0 == rotate_angle || 180 == rotate_angle)
                evas_object_move(manager_object->ctxpopup, w/2, h);
-       else if (90 == rotate_angle)
-               evas_object_move(manager_object->ctxpopup, h/2, w);
        else
                evas_object_move(manager_object->ctxpopup, h/2, w);
 
index 0777901..7b3693e 100755 (executable)
@@ -77,7 +77,7 @@ char* ConvertRGBAtoHex(int r, int g, int b, int a)
        string = g_try_malloc0(sizeof(char)*255);
        if (string != NULL) {
                hexcolor = (r << 24) + (g << 16) + (b << 8) + a;
-               g_snprintf(string, sizeof(string), "%08x", hexcolor);
+               g_snprintf(string, 255, "%08x", hexcolor);
        }
 
        return string;
index 9378187..db6ca15 100755 (executable)
@@ -773,6 +773,9 @@ static wifi_device_info_t *view_main_item_device_info_create(wifi_manager_ap_h a
        wifi_device_info_t *wifi_device = g_try_new0(wifi_device_info_t, 1);
        wifi_manager_security_type_e sec_type;
 
+       if (wifi_device == NULL)
+               return NULL;
+
        if (WIFI_MANAGER_ERROR_NONE != wifi_manager_ap_clone(&(wifi_device->ap), ap)) {
                g_free(wifi_device);
                return NULL;