From 8787a23068c2a21b9d99d99f28e339bf739e40c8 Mon Sep 17 00:00:00 2001 From: joris Date: Sat, 13 Jan 2007 15:56:15 +0000 Subject: plug 3 memleaks --- usr.bin/cvs/commit.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'usr.bin/cvs/commit.c') diff --git a/usr.bin/cvs/commit.c b/usr.bin/cvs/commit.c index 205dfbc452a..6920f38a245 100644 --- a/usr.bin/cvs/commit.c +++ b/usr.bin/cvs/commit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: commit.c,v 1.95 2007/01/13 15:45:59 joris Exp $ */ +/* $OpenBSD: commit.c,v 1.96 2007/01/13 15:56:15 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink * Copyright (c) 2006 Xavier Santolaria @@ -422,6 +422,9 @@ commit_diff_file(struct cvs_file *cf) if (cvs_diffreg(p1, p2, b3) == D_ERROR) fatal("commit_diff_file: failed to get RCS patch"); + xfree(p1); + xfree(p2); + return (b3); } -- cgit v1.2.3-59-g8ed1b