diff options
author | Niall O'Higgins <niallo@cvs.openbsd.org> | 2007-01-25 18:35:31 +0000 |
---|---|---|
committer | Niall O'Higgins <niallo@cvs.openbsd.org> | 2007-01-25 18:35:31 +0000 |
commit | 3fae22de6760a857ade5af2f402f0a53e5575715 (patch) | |
tree | e981e2e32bf0a99812cfe1a73c9faa80f9a772f2 /usr.bin/cvs/util.h | |
parent | 2e8224764e748dfe9686232eba0c1236daa442f9 (diff) |
plug a memleak in keyword expansion.
ok joris@
Diffstat (limited to 'usr.bin/cvs/util.h')
-rw-r--r-- | usr.bin/cvs/util.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/util.h b/usr.bin/cvs/util.h index 1441e6fce2b..b5f5be34554 100644 --- a/usr.bin/cvs/util.h +++ b/usr.bin/cvs/util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: util.h,v 1.13 2007/01/11 17:44:18 niallo Exp $ */ +/* $OpenBSD: util.h,v 1.14 2007/01/25 18:35:30 niallo Exp $ */ /* * Copyright (c) 2006 Niall O'Higgins <niallo@openbsd.org> * All rights reserved. @@ -52,6 +52,7 @@ struct cvs_line { char *l_line; size_t l_len; int l_lineno; + int l_needsfree; TAILQ_ENTRY(cvs_line) l_list; }; |