[ovs-dev] [PATCH 1/3] ovn-trace: Possible null dereference

Alin Serdean aserdean at cloudbasesolutions.com
Mon Jan 30 07:06:50 UTC 2017



From: Guru Shetty [mailto:guru at ovn.org]
Sent: Saturday, January 28, 2017 1:03 AM
To: Alin Serdean <aserdean at cloudbasesolutions.com>
Cc: dev at openvswitch.org
Subject: Re: [ovs-dev] [PATCH 1/3] ovn-trace: Possible null dereference



On 26 January 2017 at 23:14, Alin Serdean <aserdean at cloudbasesolutions.com<mailto:aserdean at cloudbasesolutions.com>> wrote:
Found by inspection.

Signed-off-by: Alin Gabriel Serdean <aserdean at cloudbasesolutions.com<mailto:aserdean at cloudbasesolutions.com>>
---
 ovn/utilities/ovn-trace.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ovn/utilities/ovn-trace.c b/ovn/utilities/ovn-trace.c
index 307556b..2e2859a 100644
--- a/ovn/utilities/ovn-trace.c
+++ b/ovn/utilities/ovn-trace.c
@@ -1224,7 +1224,7 @@ execute_output(const struct ovntrace_datapath *dp, struct flow *uflow,
         }
     }

-    if (port->tunnel_key != in_key || allow_loopback) {
+    if (port && (port->tunnel_key != in_key || allow_loopback)) {
The parentheses above feels odd. Did you want (port &&   port->tunnel_key != in_key) ||  allow_loopback) ?
[Alin Serdean] That makes more sense. I sent out v2: http://patchwork.ozlabs.org/patch/721279/




More information about the dev mailing list