In the file core/conf.c, there is a line:
CONF_INFO( 38, conf.reader_file, CONF_DEF_PTR, ptr:"A/README.TXT", conf_change_script_file),
But the conf_change_script_file function references conf.script_file, which is not set until later with:
CONF_INFO(194, conf.script_file, CONF_DEF_PTR, ptr:"", conf_change_script_file),
Is this a bug? Should conf_change_script_file be replaced with NULL? Or am I misunderstanding something?
Emlyn