fix bug : N_SE-3819, update default memory after removing sd card
authorHyejin Kim <hyejin0906.kim@samsung.com>
Wed, 29 Aug 2012 04:30:51 +0000 (13:30 +0900)
committerHyejin Kim <hyejin0906.kim@samsung.com>
Wed, 29 Aug 2012 04:30:51 +0000 (13:30 +0900)
setting-memory/src/setting-memory-default-memory.c

index fb1bc4d..da7fe5a 100755 (executable)
@@ -457,18 +457,18 @@ static void __setting_memory_default_memory_update_item_status(
        }
 
        /* if mmc is not mounted, update vconf*/
-       setting_retm_if(NULL == ad->data_bt, "ad->data_wap is NULL");
-       setting_retm_if(NULL == ad->data_cmr, "ad->data_wap is NULL");
-       setting_retm_if(NULL == ad->data_vrec, "ad->data_wap is NULL");
-       setting_retm_if(NULL == ad->data_rdo, "ad->data_wap is NULL");
-       setting_retm_if(NULL == ad->data_shr, "ad->data_wap is NULL");
+       setting_retm_if(NULL == ad->data_bt, "ad->data_bt is NULL");
+       setting_retm_if(NULL == ad->data_cmr, "ad->data_cmr is NULL");
+       setting_retm_if(NULL == ad->data_vrec, "ad->data_vrec is NULL");
+       setting_retm_if(NULL == ad->data_rdo, "ad->data_rdo is NULL");
+       setting_retm_if(NULL == ad->data_dvb_h, "ad->data_dvb_h is NULL");
        if (disable_mmc_flag) {
                __setting_memory_default_memory_update_vconf(ad->data_wap);
                __setting_memory_default_memory_update_vconf(ad->data_bt);
                __setting_memory_default_memory_update_vconf(ad->data_cmr);
                __setting_memory_default_memory_update_vconf(ad->data_vrec);
                __setting_memory_default_memory_update_vconf(ad->data_rdo);
-               __setting_memory_default_memory_update_vconf(ad->data_shr);
+               __setting_memory_default_memory_update_vconf(ad->data_dvb_h);
        }
 }