From: Ben Pfaff Date: Wed, 10 Nov 2010 23:12:18 +0000 (-0800) Subject: ofproto: Fix use of uninitialized variable. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=487cedcff7566691d056843d1b41023a34b211bf;p=openvswitch ofproto: Fix use of uninitialized variable. My compiler didn't report this but Ethan's did. Reported-by: Ethan Jackson --- diff --git a/ofproto/ofproto.c b/ofproto/ofproto.c index e11b15d3..e710c3d4 100644 --- a/ofproto/ofproto.c +++ b/ofproto/ofproto.c @@ -3676,7 +3676,7 @@ handle_vendor_stats_request(struct ofconn *ofconn, return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_VENDOR); } - if (ntohs(nsm->header.length) < sizeof(struct nicira_stats_msg)) { + if (ntohs(osr->header.length) < sizeof(struct nicira_stats_msg)) { VLOG_WARN_RL(&rl, "truncated Nicira stats request"); return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN); }