[Title]fix max length
authormunkyu.im <munkyu.im@samsung.com>
Wed, 14 Dec 2011 09:52:18 +0000 (18:52 +0900)
committermunkyu.im <munkyu.im@samsung.com>
Wed, 14 Dec 2011 09:52:18 +0000 (18:52 +0900)
[Type]
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

tizen/src/vtm.c
tizen/src/vtm.h

index e028ef7..8be689e 100644 (file)
@@ -100,7 +100,7 @@ gchar *g_info_file;
 GtkWidget *list;
 int sdcard_create_size;
 GtkWidget *f_entry;
-gchar icon_image[128] = {0, };
+gchar icon_image[1024] = {0, };
 
 #ifdef _WIN32
 void socket_cleanup(void)
index 5bca71a..5a994a2 100644 (file)
@@ -53,7 +53,7 @@
 #include "utils.h"
 #include "dialog.h"
 #include "process.h"
-#define MAX_LEN 256
+#define MAX_LEN 1024
 
 gchar *remove_chars(const gchar *str);
 gboolean run_cmd(char *cmd);