qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] net: fix incorrect access to pointer


From: Jason Wang
Subject: Re: [Qemu-devel] [PATCH] net: fix incorrect access to pointer
Date: Mon, 18 Jul 2016 13:59:02 +0800
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.8.0



On 2016年07月15日 16:43, Paolo Bonzini wrote:
This is not dereferencing the pointer, and instead checking only
the value of the pointer.

Signed-off-by: Paolo Bonzini <address@hidden>
---
  net/eth.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/eth.c b/net/eth.c
index 0be59c2..df81efb 100644
--- a/net/eth.c
+++ b/net/eth.c
@@ -211,7 +211,7 @@ void eth_get_protocols(const struct iovec *iov, int iovcnt,
                                       *l4hdr_off, sizeof(l4hdr_info->hdr.tcp),
                                       &l4hdr_info->hdr.tcp);
- if (istcp) {
+            if (*istcp) {
                  *l5hdr_off = *l4hdr_off +
                      TCP_HEADER_DATA_OFFSET(&l4hdr_info->hdr.tcp);

Applied to -net. Thanks



reply via email to

[Prev in Thread] Current Thread [Next in Thread]