<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns="http://tizen.org/ns/packages" package="@PACKAGE_NAME@" version="1.1.4" install-location="internal-only">
+<manifest xmlns="http://tizen.org/ns/packages" package="@PACKAGE_NAME@" version="1.1.5" install-location="internal-only">
<label>Simple Menu-screen</label>
<author email="jinny.yoon@samsung.com" href="www.samsung.com">Jin Yoon</author>
<author email="yjoo93.park@samsung.com" href="www.samsung.com">Youngjoo Park</author>
Name: org.tizen.menu-screen
Summary: An utility library of the menu screen
-Version: 1.1.4
+Version: 1.1.5
Release: 1.1
Group: TO_BE/FILLED_IN
License: Flora Software License
if (!ai->image) {
if (0 != access(ai->icon, R_OK)) {
_E("Failed to access to [%s]", ai->icon);
- } else {
- FILE *fp;
+ if (ai->icon) free(ai->icon);
+ ai->icon = strdup(DEFAULT_ICON);
+ if (!ai->icon) _E("Critical! strdup error");
+ }
+ if (ai->icon) {
+ FILE *fp;
fp = fopen(ai->icon, "rb");
if (fp) {
fseek(fp, 0L, SEEK_END);