From 6d7601eaf8b943e6d4da415dcb72235065efe4d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Thu, 5 Apr 2007 14:52:19 +0200 Subject: [PATCH] Fixed typo in low_get_first_arg_type(). Rev: src/pike_types.c:1.279 --- src/pike_types.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pike_types.c b/src/pike_types.c index 4e84e7261c..722ea578e8 100644 --- a/src/pike_types.c +++ b/src/pike_types.c @@ -2,7 +2,7 @@ || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information. -|| $Id: pike_types.c,v 1.278 2007/04/05 12:37:43 grubba Exp $ +|| $Id: pike_types.c,v 1.279 2007/04/05 12:52:19 grubba Exp $ */ #include "global.h" @@ -5157,7 +5157,7 @@ static struct pike_type *low_get_first_arg_type(struct pike_type *arg_type, or_pike_types(tmp, tmp2 = low_get_first_arg_type(arg_type->car, flags), 1); - if (tmp2) free_type(tmp); + if (tmp2) free_type(tmp2); free_type(tmp); return res; } -- GitLab