ecore_imf/wayland: fix memory leak occured after getting surrounding text
authorJihoon Kim <jihoon48.kim@samsung.com>
Tue, 30 Sep 2014 00:31:33 +0000 (09:31 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Tue, 30 Sep 2014 00:32:39 +0000 (09:32 +0900)
src/modules/ecore_imf/wayland/wayland_imcontext.c

index 1ca44b0..a83b493 100644 (file)
@@ -235,6 +235,8 @@ text_input_commit_string(void                 *data,
                      "delete on commit (text: `%s', offset `%d', length: `%d')",
                      surrounding, ev.offset, ev.n_chars);
 
+             free(surrounding);
+
              ecore_imf_context_delete_surrounding_event_add(imcontext->ctx, ev.offset, ev.n_chars);
              ecore_imf_context_event_callback_call(imcontext->ctx, ECORE_IMF_CALLBACK_DELETE_SURROUNDING, &ev);
           }