diff options
author | Damien George <damien.p.george@gmail.com> | 2016-12-14 11:40:11 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-12-14 11:40:11 +1100 |
commit | e8f2db7da3f0e60901b09ee6eada99a9e875497f (patch) | |
tree | 1150feb2c3e6ad2669da5ac42bd862f533c768d4 /stmhal | |
parent | e83f140463f2144b84e2fe4fa249ab8c8426b5e9 (diff) | |
download | micropython-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 'stmhal')
-rw-r--r-- | stmhal/main.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/stmhal/main.c b/stmhal/main.c index b5d0916f3a..78afe54ef6 100644 --- a/stmhal/main.c +++ b/stmhal/main.c @@ -439,9 +439,6 @@ soft_reset: mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_flash_slash_lib)); mp_obj_list_init(mp_sys_argv, 0); - // zero out the pointers to the mounted devices - memset(MP_STATE_PORT(fs_user_mount), 0, sizeof(MP_STATE_PORT(fs_user_mount))); - // Initialise low-level sub-systems. Here we need to very basic things like // zeroing out memory and resetting any of the sub-systems. Following this // we can run Python scripts (eg boot.py), but anything that is configurable |