From a1bddc75b4bb22cc5232a18f1346dada428a2bc6 Mon Sep 17 00:00:00 2001 From: "Alexander V. Chernikov" Date: Mon, 27 Apr 2015 10:01:22 +0000 Subject: [PATCH] Fix 'may be used uninitialized' warning not caught by clang. --- sys/netpfil/ipfw/ip_fw_sockopt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netpfil/ipfw/ip_fw_sockopt.c b/sys/netpfil/ipfw/ip_fw_sockopt.c index 6f55511af71..94fe09fbfb9 100644 --- a/sys/netpfil/ipfw/ip_fw_sockopt.c +++ b/sys/netpfil/ipfw/ip_fw_sockopt.c @@ -2211,7 +2211,7 @@ create_objects_compat(struct ip_fw_chain *ch, ipfw_insn *cmd, return (error); } - return (error); + return (0); } /*