Fixed a svace for 4125 06/60806/2 accepted/tizen/common/20160303.110236 accepted/tizen/ivi/20160305.085959 accepted/tizen/mobile/20160305.085913 accepted/tizen/tv/20160305.085929 accepted/tizen/wearable/20160305.085944 submit/tizen/20160303.024714
authorhyunuktak <hyunuk.tak@samsung.com>
Wed, 2 Mar 2016 09:49:00 +0000 (18:49 +0900)
committerhyunuktak <hyunuk.tak@samsung.com>
Wed, 2 Mar 2016 23:42:03 +0000 (08:42 +0900)
Change-Id: Iba1bb01ecb79558d4e14c930bf044fd6626c9952
Signed-off-by: hyunuktak <hyunuk.tak@samsung.com>
packaging/wifi-efl-ug.spec
sources/ui-gadget/viewers-layout/wifi_viewer_list.c

index 6555045..48aed75 100644 (file)
@@ -1,7 +1,7 @@
 %define _unpackaged_files_terminate_build 0
 Name:          wifi-efl-ug
 Summary:       Wi-Fi UI Gadget for TIZEN
-Version:       1.0.160
+Version:       1.0.161
 Release:       1
 Group:         App/Network
 License:       Flora-1.1
index 14ecd0f..a79d0e3 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;
-               sprintf(string, "%08x", hexcolor);
+               g_snprintf(string, sizeof(string), "%08x", hexcolor);
        }
 
        return string;