Recent checkin by neotron:
RCS file: /pike/data/cvsroot/Pike/7.3/src/modules/spider/spider.c,v [...] 793d792 < static struct svalue empty_string_svalue; 913c912 < mapping_index_no_free(&sval1,cont,&empty_string_svalue); ---
mapping_index_no_free(&sval1,cont,&empty_pike_string);
[...]
empty_string_svalue was a struct svalue. empty_pike_string is a struct pike_string. The third argument to mapping_index_no_free() is supposed to be a struct svalue, not a struct pike_string.
At least check that your changes compile without warnings before committing, please.