Fixed the bug that newly added interface function pointer is not initialized
authorJi-hoon Lee <dalton.lee@samsung.com>
Fri, 16 Nov 2012 06:29:57 +0000 (15:29 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Mon, 19 Nov 2012 07:00:05 +0000 (16:00 +0900)
Change-Id: Iccd26525cd6d2872b5bc60f1a855a2c7eeef2314

ism/src/scim_helper_module.cpp

index 6e1338e..4bfc413 100644 (file)
@@ -48,7 +48,8 @@ HelperModule::HelperModule (const String &name)
       m_get_helper_info (0),
       m_get_helper_lang (0),
       m_run_helper (0),
-      m_set_arg_info (0)
+      m_set_arg_info (0),
+      m_set_path_info (0)
 {
     if (name.length ()) load (name);
 }