mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 10:39:23 +08:00
fac95192ea
The code just clean the first member of array 'finsh_vm_stack', but it works well in the past years, memset(&finsh_vm_stack[0], 0, sizeof(finsh_vm_stack[0])); Is it better to re-code as below, it will be more readable and robust: memset(&finsh_vm_stack[0], 0, sizeof(finsh_vm_stack));