Merge pull request #945 from enkiller/modify_lwip_rx_is_null

[lwip]判定eth_rx是否为空,为空不执行。
This commit is contained in:
Bernard Xiong 2017-11-03 12:22:57 +08:00 committed by GitHub
commit bdfb40e761
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -391,6 +391,8 @@ static void eth_rx_thread_entry(void* parameter)
/* receive all of buffer */
while (1)
{
if(device->eth_rx == RT_NULL) break;
p = device->eth_rx(&(device->parent));
if (p != RT_NULL)
{