[components/shell] shell will not work if ch is none zero as random value in stack

The serial getchar will only modify the LSB of ch, the MSB 3 bytes
will be unchanged as the random value on stack, so if MSB 3 bytes
not zero, the value got is wrong.
This commit is contained in:
misonyo 2019-03-13 22:05:03 +08:00 committed by GitHub
parent a0df6bea81
commit 14e048aa8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ static int finsh_getchar(void)
#ifdef RT_USING_POSIX
return getchar();
#else
int ch;
int ch = 0;
RT_ASSERT(shell != RT_NULL);
while (rt_device_read(shell->device, -1, &ch, 1) != 1)