diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2008-03-12 13:54:50 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2008-03-12 13:54:50 +0000 |
commit | 1bbadf5adfc6a1a2b0cfa6c8fd9a7b5a7c0f050c (patch) | |
tree | d277e16fde6c01eb015f09b67ce63ea255bab183 /usr.bin | |
parent | d2bea6aeb48e94edad27ef7133781c3011e4a860 (diff) |
missing rcsnum_free();
from Igor Zinovik
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/tag.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/tag.c b/usr.bin/cvs/tag.c index 7e6eebf2559..fac4752553f 100644 --- a/usr.bin/cvs/tag.c +++ b/usr.bin/cvs/tag.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tag.c,v 1.71 2008/03/09 03:14:52 joris Exp $ */ +/* $OpenBSD: tag.c,v 1.72 2008/03/12 13:54:49 joris Exp $ */ /* * Copyright (c) 2006 Xavier Santolaria <xsa@openbsd.org> * @@ -314,6 +314,7 @@ tag_add(struct cvs_file *cf) return (-1); } (void)rcsnum_tostr(trev, trevbuf, sizeof(trevbuf)); + rcsnum_free(trev); if (!(runflags & T_FORCE_MOVE)) { cvs_printf("W %s : %s ", cf->file_path, tag_name); |