artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d1878fd
)
memory leak, Coverity CID 1748, Loganaden Velvindron
author
deraadt
<deraadt@openbsd.org>
Mon, 30 Dec 2013 21:52:21 +0000
(21:52 +0000)
committer
deraadt
<deraadt@openbsd.org>
Mon, 30 Dec 2013 21:52:21 +0000
(21:52 +0000)
usr.bin/fgen/fgen.l
patch
|
blob
|
history
diff --git
a/usr.bin/fgen/fgen.l
b/usr.bin/fgen/fgen.l
index
c75364d
..
261b929
100644
(file)
--- a/
usr.bin/fgen/fgen.l
+++ b/
usr.bin/fgen/fgen.l
@@
-1,5
+1,5
@@
%{
-/* $OpenBSD: fgen.l,v 1.
9 2009/12/10 17:31:49 deraadt Exp $
*/
+/* $OpenBSD: fgen.l,v 1.
10 2013/12/30 21:52:21 deraadt Exp $
*/
/* $NetBSD: fgen.l,v 1.12 2001/06/13 10:46:05 wiz Exp $ */
/* FLEX input for FORTH input file scanner */
/*
@@
-1232,6
+1232,7
@@
tokenize(input)
token = yylex();
if (token == NULL) {
+ free(alias->name);
free(alias);
(void)printf( "EOF in alias definition\n");
return;