diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2005-12-08 05:53:46 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2005-12-08 05:53:46 +0000 |
commit | 06dd2437a61cb296e3e9f6e1b2ad7c3c81b80670 (patch) | |
tree | 495584d73638ef411d37435bc9b47a78dbe9436a /sys/dev/raidframe | |
parent | 38eaaa94fb8abb386150fe44ab625201fd6d7659 (diff) |
and remove a bogus free spotted after previous commit
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r-- | sys/dev/raidframe/rf_openbsdkintf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/raidframe/rf_openbsdkintf.c b/sys/dev/raidframe/rf_openbsdkintf.c index 81266454632..ad6120913e3 100644 --- a/sys/dev/raidframe/rf_openbsdkintf.c +++ b/sys/dev/raidframe/rf_openbsdkintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rf_openbsdkintf.c,v 1.30 2005/12/08 05:32:55 tedu Exp $ */ +/* $OpenBSD: rf_openbsdkintf.c,v 1.31 2005/12/08 05:53:45 tedu Exp $ */ /* $NetBSD: rf_netbsdkintf.c,v 1.109 2001/07/27 03:30:07 oster Exp $ */ /*- @@ -1142,7 +1142,6 @@ raidioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p) if ((row < 0) || (row >= raidPtr->numRow) || (column < 0) || (column >= raidPtr->numCol)) { - RF_Free( clabel, sizeof(RF_ComponentLabel_t)); return(EINVAL); } |