indent: free the used memory.

This commit is contained in:
ChunEon Park 2014-08-06 16:52:05 +09:00
parent 10848a3c99
commit be786d617f
1 changed files with 4 additions and 1 deletions

View File

@ -83,7 +83,7 @@ indent_insert_br_case(indent_data *id, Evas_Object *entry)
}
int space = indent_space_get(id, entry);
if (space <= 0) return;
if (space <= 0) goto end;
//Alloc Empty spaces
char *p = alloca(space + 1);
@ -91,6 +91,9 @@ indent_insert_br_case(indent_data *id, Evas_Object *entry)
p[space] = '\0';
elm_entry_entry_insert(entry, p);
end:
free(utf8);
}
static void