Branch: Tag:

1998-01-30

1998-01-30 06:21:37 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>

file->proxy(), memory leak fixes, more debug etc. etc.

Rev: src/array.c:1.24
Rev: src/builtin_functions.c:1.65
Rev: src/error.c:1.11
Rev: src/modules/Oracle/oracle.c:1.7
Rev: src/modules/files/file.c:1.72
Rev: src/modules/system/system.c:1.40
Rev: src/signal_handler.c:1.27
Rev: src/threads.c:1.55
Rev: src/threads.h:1.28

4:   ||| See the files COPYING and DISCLAIMER for more information.   \*/   #include "global.h" - RCSID("$Id: builtin_functions.c,v 1.64 1998/01/29 18:10:53 grubba Exp $"); + RCSID("$Id: builtin_functions.c,v 1.65 1998/01/30 06:19:50 hubbe Exp $");   #include "interpret.h"   #include "svalue.h"   #include "pike_macros.h"
617:   {    if(args < 1)    error("Too few arguments to throw()\n"); -  pop_n_elems(args-1); -  throw_value=sp[-1]; -  sp--; +  assign_svalue(&throw_value,sp-args); +  pop_n_elems(args);    pike_throw();   }