2005-02-25
2005-02-25 14:56:33 by Henrik Grubbström (Grubba) <grubba@grubba.org>
-
b2e9e133e59c3834618312da4a6619c13886190f
(7 lines)
(+4/-3)
[
Show
| Annotate
]
Branch: 5.2
Potential fix for [bug 3790 (#3790)].
Rev: server/base_server/configuration.pike:1.589
5:
// @appears Configuration
//! A site's main configuration
- constant cvs_version = "$Id: configuration.pike,v 1.588 2005/02/08 13:20:18 mast Exp $";
+ constant cvs_version = "$Id: configuration.pike,v 1.589 2005/02/25 14:56:33 grubba Exp $";
#include <module.h>
#include <module_constants.h>
#include <roxen.h>
2285: Inside #if defined(URL_MODULES)
{
mixed err;
id->misc->stat_file_nest++;
- id->not_query = of;
+
TRACE_LEAVE("Recursing");
err = catch {
if( id->misc->stat_file_nest < 20 )
- tmp = (id->conf || this_object())->stat_file( file, id );
+ tmp = (id->conf || this_object())->stat_file(id->not_query, id );
else
error("Too deep recursion in roxen::stat_file() while mapping "
+file+".\n");
};
-
+ id->not_query = of;
id->misc->stat_file_nest = 0;
if(err)
throw(err);