[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bug-wget] Re: wget 1.12 memory exhausted
From: |
Keisial |
Subject: |
Re: [Bug-wget] Re: wget 1.12 memory exhausted |
Date: |
Fri, 06 Aug 2010 00:30:10 +0200 |
User-agent: |
Thunderbird |
Inaki San Vicente wrote:
> When I run the wget 1.10.2 version in other computers, the debug information
> remains the same until the line:
>
> "Loaded www.euskadi.net/styles/r33-2220VAStyles.scss (size 178662)."
>
> There, instead of loading the scss file (which has been already saved), it
> will
> report:
> "Dequeuing http://www.euskadi.net/scripts/r33-2220VAScripts.sjs at depth 2 "
> and the continues downloading files normally.
That scss file contains several entries like:
background-image:url( );
background-image:url();
It may be resolving them to itself, thus entering into some kind of loop?
I have tested, and with background-image:url(); it works ok:
"Already on the black list. Decided NOT to load it."
background-image:url( ); [Two spaces] it results in the reported condition:
wget: memory exhausted
Finally, background-image:url( ); [One space] it segfaults.