From 64ccbb8e27bdba531790dac23de8f97e1bdcfc99 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Sat, 14 Jan 2006 12:59:55 +0000 Subject: [PATCH] Removal of the strdup. SVN revision: 19780 --- e_mod_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e_mod_main.c b/e_mod_main.c index 4b03a75..57a4144 100644 --- a/e_mod_main.c +++ b/e_mod_main.c @@ -258,7 +258,7 @@ _tclock_face_new(E_Container *con) snprintf(buff, sizeof(buff), PACKAGE_DATA_DIR"/tclock.edj"); if (!e_theme_edje_object_set(o, "base/theme/modules/tclock", "modules/tclock/main")) - edje_object_file_set(o, strdup(buff), "modules/tclock/main"); + edje_object_file_set(o, buff, "modules/tclock/main"); evas_object_show(o); o = evas_object_rectangle_add(con->bg_evas);