From 83a9f272d8b1d2ec08bc3d5b8fa04d5b8feeb349 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 18 Jun 2008 19:06:51 +0000 Subject: [PATCH] Missing NULL check. --- input.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/input.c b/input.c index fcb97316..fa7dd492 100644 --- a/input.c +++ b/input.c @@ -1,4 +1,4 @@ -/* $Id: input.c,v 1.49 2008-06-04 19:20:09 nicm Exp $ */ +/* $Id: input.c,v 1.50 2008-06-18 19:06:51 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -143,7 +143,8 @@ input_start_string(struct input_ctx *ictx, int type) void input_abort_string(struct input_ctx *ictx) { - xfree(ictx->string_buf); + if (ictx->string_buf != NULL) + xfree(ictx->string_buf); ictx->string_buf = NULL; }