summaryrefslogtreecommitdiffstatshomepage
path: root/esp8266
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2016-12-14 11:40:11 +1100
committerDamien George <damien.p.george@gmail.com>2016-12-14 11:40:11 +1100
commite8f2db7da3f0e60901b09ee6eada99a9e875497f (patch)
tree1150feb2c3e6ad2669da5ac42bd862f533c768d4 /esp8266
parente83f140463f2144b84e2fe4fa249ab8c8426b5e9 (diff)
downloadmicropython-e8f2db7da3f0e60901b09ee6eada99a9e875497f.tar.gz
micropython-e8f2db7da3f0e60901b09ee6eada99a9e875497f.zip
py/runtime: Zero out fs_user_mount array in mp_init.
There's no need to force ports to copy-and-paste this initialisation code. If FSUSERMOUNT is enabled then this zeroing out must be done.
Diffstat (limited to 'esp8266')
-rw-r--r--esp8266/main.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/esp8266/main.c b/esp8266/main.c
index 9883f9f96d..6814248aa6 100644
--- a/esp8266/main.c
+++ b/esp8266/main.c
@@ -52,9 +52,6 @@ STATIC void mp_reset(void) {
mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_lib));
mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_));
mp_obj_list_init(mp_sys_argv, 0);
- #if MICROPY_VFS_FAT
- memset(MP_STATE_PORT(fs_user_mount), 0, sizeof(MP_STATE_PORT(fs_user_mount)));
- #endif
MP_STATE_PORT(mp_kbd_exception) = mp_obj_new_exception(&mp_type_KeyboardInterrupt);
MP_STATE_PORT(term_obj) = MP_OBJ_NULL;
MP_STATE_PORT(dupterm_arr_obj) = MP_OBJ_NULL;