| Problem fixed for the upcoming release (3.15).
The fault was located:
in htsparse.c,
line 1044:
replace
if (!strfield(adr,"URL="))
by
if (!strfield(adr+l,"URL="))
(extract:
// sauter content="1;URL=http://..
if (p_searchMETAURL) {
int l=0;
while(!strfield(adr+l,"URL=") &&
(l<128) ) l++;
if (!strfield(adr+l,"URL="))
ok=-1;
else
adr+=(l+4);
}
)
| |