David Lin
fac95192ea
[finsh]Minor optimization in finsh_compiler.c
...
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));
2020-02-29 16:53:44 +08:00
..
2019-11-11 10:36:49 +08:00
2018-10-14 19:28:18 +08:00
2020-02-29 16:53:44 +08:00
2018-10-14 19:28:18 +08:00
2018-10-14 19:28:18 +08:00
2018-10-14 19:28:18 +08:00
2018-10-14 19:28:18 +08:00
2018-10-14 19:28:18 +08:00
2018-10-14 19:28:18 +08:00
2018-10-14 19:28:18 +08:00
2018-10-14 19:28:18 +08:00
2018-10-14 19:28:18 +08:00
2018-10-14 19:28:18 +08:00
2018-10-14 19:28:18 +08:00
2018-10-14 19:28:18 +08:00
2018-10-14 19:28:18 +08:00
2018-10-14 19:28:18 +08:00
2018-10-14 19:28:18 +08:00
2019-07-19 15:44:36 +08:00
2018-10-14 19:28:18 +08:00
2018-10-14 19:28:18 +08:00
2018-06-07 11:55:54 +08:00
2019-09-25 20:14:39 +08:00
2019-09-25 20:14:39 +08:00
2018-10-14 19:28:18 +08:00
2019-09-25 20:14:39 +08:00
2019-12-07 13:47:03 +08:00
2019-09-25 20:14:39 +08:00
2019-09-25 20:14:39 +08:00