Don't leak FILE * on malloc failure. From ivoire at users dot sourceforge dot

net.
This commit is contained in:
Nicholas Marriott 2009-07-09 18:05:17 +00:00
parent 295879cced
commit 4422b958c3
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $Id: cmd-load-buffer.c,v 1.4 2009-05-21 19:38:51 nicm Exp $ */ /* $OpenBSD: cmd-load-buffer.c,v 1.2 2009/07/09 09:54:56 nicm Exp $ */
/* /*
* Copyright (c) 2009 Tiago Cunha <me@tiagocunha.org> * Copyright (c) 2009 Tiago Cunha <me@tiagocunha.org>
@ -78,6 +78,7 @@ cmd_load_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)
*/ */
if ((buf = malloc(statbuf.st_size + 1)) == NULL) { if ((buf = malloc(statbuf.st_size + 1)) == NULL) {
ctx->error(ctx, "malloc error: %s", strerror(errno)); ctx->error(ctx, "malloc error: %s", strerror(errno));
fclose(f);
return (-1); return (-1);
} }