summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorray <ray@openbsd.org>2007-05-17 03:33:24 +0000
committerray <ray@openbsd.org>2007-05-17 03:33:24 +0000
commitd0c7d3bdae3564f973b5fe444b2225a6b5d04c18 (patch)
treef533c75a5b8e85372a6acdc6adc7a8ad3a1f015e
parentRemove nonsensical dereference. From tbert. (diff)
downloadwireguard-openbsd-d0c7d3bdae3564f973b5fe444b2225a6b5d04c18.tar.xz
wireguard-openbsd-d0c7d3bdae3564f973b5fe444b2225a6b5d04c18.zip
Don't free unused variable, from tbert.
OK niallo && xsa
-rw-r--r--usr.bin/rcs/rcs.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/rcs/rcs.c b/usr.bin/rcs/rcs.c
index f7cd4d349c9..549aeb9f407 100644
--- a/usr.bin/rcs/rcs.c
+++ b/usr.bin/rcs/rcs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rcs.c,v 1.36 2007/02/27 07:59:13 xsa Exp $ */
+/* $OpenBSD: rcs.c,v 1.37 2007/05/17 03:33:24 ray Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -1881,7 +1881,6 @@ rcs_parse_delta(RCSFILE *rfp)
rcs_errno = RCS_ERR_PARSE;
warnx("unexpected token `%s' at start of delta",
RCS_TOKSTR(rfp));
- rcs_freedelta(rdp);
return (-1);
}