From: Russell Bryant Date: Wed, 8 Dec 2004 14:42:44 +0000 (+0000) Subject: remove unneccesary 'if' X-Git-Tag: 1.0.11.1~348 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b035299213b23efdc443cbf7b42c1362e7b2102c;p=thirdparty%2Fasterisk.git remove unneccesary 'if' git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@4403 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/ast_expr.y b/ast_expr.y index 71546f1b0b..43385ae8f4 100755 --- a/ast_expr.y +++ b/ast_expr.y @@ -215,8 +215,7 @@ struct val *vp; } if (vp->type == string || vp->type == numeric_string) free (vp->u.s); - if (vp) - free (vp); + free (vp); }