From: Etienne Dechamps Date: Sat, 12 Jul 2014 10:13:04 +0000 (+0100) Subject: Don't initialize outpkt to an unused value. X-Git-Tag: release-1.1pre11~70 X-Git-Url: http://tinc-vpn.org/git/browse?a=commitdiff_plain;ds=sidebyside;h=127f2f99f3d43e0565782750f26f1d3980c72711;hp=127f2f99f3d43e0565782750f26f1d3980c72711;p=tinc Don't initialize outpkt to an unused value. in receive_udppacket(), we initialize outpkt to a default value but the value is never read anywhere, as every read is preceded by a write. This issue was found by the clang static analyzer tool: http://clang-analyzer.llvm.org/ ---