=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/modules.c,v retrieving revision 1.18 retrieving revision 1.19 diff -c -r1.18 -r1.19 *** src/usr.bin/cvs/modules.c 2015/01/16 06:40:07 1.18 --- src/usr.bin/cvs/modules.c 2015/11/05 09:48:21 1.19 *************** *** 1,4 **** ! /* $OpenBSD: modules.c,v 1.18 2015/01/16 06:40:07 deraadt Exp $ */ /* * Copyright (c) 2008 Joris Vink * --- 1,4 ---- ! /* $OpenBSD: modules.c,v 1.19 2015/11/05 09:48:21 nicm Exp $ */ /* * Copyright (c) 2008 Joris Vink * *************** *** 207,215 **** return (0); bad: ! if (prog != NULL) ! xfree(prog); ! xfree(bline); cvs_log(LP_NOTICE, "malformed line in CVSROOT/modules: %d", lineno); return (0); } --- 207,214 ---- return (0); bad: ! free(prog); ! free(bline); cvs_log(LP_NOTICE, "malformed line in CVSROOT/modules: %d", lineno); return (0); }