summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/pci/if_rl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/pci/if_rl.c b/sys/pci/if_rl.c
index e1713bb..39cc6e8 100644
--- a/sys/pci/if_rl.c
+++ b/sys/pci/if_rl.c
@@ -1093,10 +1093,10 @@ rl_attach(dev)
}
callout_handle_init(&sc->rl_stat_ch);
- return(0);
fail:
- mtx_destroy(&sc->rl_mtx);
- return(error);
+ if (error != 0)
+ mtx_destroy(&sc->rl_mtx);
+ return (error);
}
static int
OpenPOWER on IntegriCloud