From 3cda26b52e9452d4c33f0af08f873804823cb823 Mon Sep 17 00:00:00 2001 From: Joris Vink Date: Tue, 29 Mar 2005 17:37:38 +0000 Subject: cvs_file_attach() can fail, make sure we can handle it when it does. --- usr.bin/cvs/resp.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'usr.bin/cvs/resp.c') diff --git a/usr.bin/cvs/resp.c b/usr.bin/cvs/resp.c index 12a29d818f1..e9b86036d02 100644 --- a/usr.bin/cvs/resp.c +++ b/usr.bin/cvs/resp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: resp.c,v 1.21 2005/01/27 18:34:26 jfb Exp $ */ +/* $OpenBSD: resp.c,v 1.22 2005/03/29 17:37:37 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. @@ -394,7 +394,10 @@ cvs_resp_sticky(struct cvsroot *root, int type, char *line) cf->cf_ddat->cd_root = root; root->cr_ref++; - cvs_file_attach(sdir, cf); + if (cvs_file_attach(sdir, cf) < 0) { + cvs_file_free(cf); + return (-1); + } /* add a directory entry to the parent */ if ((entf = cvs_ent_open(subdir, O_WRONLY)) != NULL) { -- cgit v1.2.3