From 338d904145d1ccb779e33c46740e97b11b6c7376 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Thu, 4 Nov 1999 18:21:42 +0100 Subject: [PATCH] Fixed bug. Rev: src/builtin_functions.c:1.201 --- src/builtin_functions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/builtin_functions.c b/src/builtin_functions.c index 816d4a82be..62e3abc370 100644 --- a/src/builtin_functions.c +++ b/src/builtin_functions.c @@ -5,7 +5,7 @@ \*/ /**/ #include "global.h" -RCSID("$Id: builtin_functions.c,v 1.200 1999/11/04 15:42:51 grubba Exp $"); +RCSID("$Id: builtin_functions.c,v 1.201 1999/11/04 17:21:42 grubba Exp $"); #include "interpret.h" #include "svalue.h" #include "pike_macros.h" @@ -1889,7 +1889,7 @@ void f_compile(INT32 args) if ((args > 1) && (sp[1-args].type == T_OBJECT)) { p = compile(sp[-args].u.string, sp[1-args].u.object); } else { - p = compile(sp[-args].u.string, master_object); + p = compile(sp[-args].u.string, NULL); } pop_n_elems(args); push_program(p); -- GitLab