diff options
author | 2010-07-23 23:59:32 +0000 | |
---|---|---|
committer | 2010-07-23 23:59:32 +0000 | |
commit | 5bf9467766ee6aa128dd0426467609b9b65b1214 (patch) | |
tree | 8afa0d0bdd0a66f9c6bd57bafb8f8205438eb386 | |
parent | Handle redirection to relative url's in the Location: header of http (diff) | |
download | wireguard-openbsd-5bf9467766ee6aa128dd0426467609b9b65b1214.tar.xz wireguard-openbsd-5bf9467766ee6aa128dd0426467609b9b65b1214.zip |
Plug mem leak.
OK nicm
-rw-r--r-- | usr.bin/rcs/ci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/rcs/ci.c b/usr.bin/rcs/ci.c index f53697e95cd..faa70c9ddec 100644 --- a/usr.bin/rcs/ci.c +++ b/usr.bin/rcs/ci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ci.c,v 1.207 2010/07/23 21:46:05 ray Exp $ */ +/* $OpenBSD: ci.c,v 1.208 2010/07/23 23:59:32 ray Exp $ */ /* * Copyright (c) 2005, 2006 Niall O'Higgins <niallo@openbsd.org> * All rights reserved. @@ -924,6 +924,7 @@ checkin_keywordscan(BUF *data, RCSNUM **rev, time_t *date, char **author, /* XXX - Not binary safe. */ buf_putc(buf, '\0'); checkin_parsekeyword(buf_get(buf), rev, date, author, state); + buf_free(buf); loopend:; } if (kwstr == NULL) |