提交 ad96b485 编写于 作者: A Adrian Bunk 提交者: David S. Miller

[TG3]: Fix a memory leak.

This patch fixes a memory leak (buf wasn't freed) spotted by the
Coverity checker.
Signed-off-by: NAdrian Bunk <bunk@stusta.de>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 e3a5cd9e
......@@ -8034,9 +8034,13 @@ static int tg3_test_nvram(struct tg3 *tp)
for (i = 0; i < size; i++)
csum8 += buf8[i];
if (csum8 == 0)
return 0;
return -EIO;
if (csum8 == 0) {
err = 0;
goto out;
}
err = -EIO;
goto out;
}
/* Bootstrap checksum at offset 0x10 */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册