Module Name: src Committed By: snj Date: Tue Dec 25 21:10:35 UTC 2012
Modified Files: src/usr.bin/sed [netbsd-6]: compile.c Log Message: Pull up following revision(s) (requested by msaitoh in ticket #764): usr.bin/sed/compile.c: revision 1.38 Fix memory leak. To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.37.8.1 src/usr.bin/sed/compile.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.bin/sed/compile.c diff -u src/usr.bin/sed/compile.c:1.37 src/usr.bin/sed/compile.c:1.37.8.1 --- src/usr.bin/sed/compile.c:1.37 Fri Feb 19 16:35:27 2010 +++ src/usr.bin/sed/compile.c Tue Dec 25 21:10:35 2012 @@ -1,4 +1,4 @@ -/* $NetBSD: compile.c,v 1.37 2010/02/19 16:35:27 tnn Exp $ */ +/* $NetBSD: compile.c,v 1.37.8.1 2012/12/25 21:10:35 snj Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -76,7 +76,7 @@ #if 0 static char sccsid[] = "@(#)compile.c 8.2 (Berkeley) 4/28/95"; #else -__RCSID("$NetBSD: compile.c,v 1.37 2010/02/19 16:35:27 tnn Exp $"); +__RCSID("$NetBSD: compile.c,v 1.37.8.1 2012/12/25 21:10:35 snj Exp $"); #endif #endif /* not lint */ @@ -474,6 +474,7 @@ compile_re(char *p, regex_t **repp) err(COMPILE, "RE error: %s", strregerror(eval, *repp)); if (maxnsub < (*repp)->re_nsub) maxnsub = (*repp)->re_nsub; + free(re); return (p); }