Re: [webkit-dev] Gdklauncher Craches

2007-02-22 Thread Krzysztof Kowalczyk
I did some work in http://bugs.webkit.org/show_bug.cgi?id=12783 based on one of your patches in bugzilla, but it doesn't port all of those changes. The only malloc() related fix I can recall is that url string life-time wasn't guaranteed to last as long as curl request which could have caused prob

Re: [webkit-dev] Gdklauncher Craches

2007-02-22 Thread Mike Emmel
On 2/22/07, Krzysztof Kowalczyk <[EMAIL PROTECTED]> wrote: Looking more closely at both callstacks, there is a re-entrance in curl i.e. a data callback is called from within curl_multi_perform, it triggers html processing which triggers a download of another resource which enters curl again. Mayb

Re: [webkit-dev] Gdklauncher Craches

2007-02-22 Thread Krzysztof Kowalczyk
Looking more closely at both callstacks, there is a re-entrance in curl i.e. a data callback is called from within curl_multi_perform, it triggers html processing which triggers a download of another resource which enters curl again. Maybe the problem is that curl version on Ubuntu 6.10 is not re-

Re: [webkit-dev] Gdklauncher Craches

2007-02-22 Thread Robin Dunn
Krzysztof Kowalczyk wrote: On my Ubuntu 6.10 with the default curl libraries (7.15.4, I believe), I've been seeing often crashes in curl. They all pretty much went away when I uninstalled curl and build my own debug version from latest curl sources (http://curl.haxx.se/download/curl-7.16.1.tar.gz

Re: [webkit-dev] Gdklauncher Craches

2007-02-22 Thread Krzysztof Kowalczyk
On my Ubuntu 6.10 with the default curl libraries (7.15.4, I believe), I've been seeing often crashes in curl. They all pretty much went away when I uninstalled curl and build my own debug version from latest curl sources (http://curl.haxx.se/download/curl-7.16.1.tar.gz) and made gdklauncher use t

Re: [webkit-dev] Accessing back/forward history

2007-02-22 Thread Brady Eidson
Hey Oscar, It sounds like you're wanting to access the back/forward list directly. getHistoryLength() and historyURL() are *primarily* in FrameLoader for use internal to FrameLoader. Since the back/forward list is more a property of the Page you should be manipulating it from there if yo

[webkit-dev] Gdklauncher Craches

2007-02-22 Thread shrikant ganpat gangoda
Hi All,I have build the latest WebKit (on 22 Feb 2007).  After executing the gdklauncher i am getting segmentation fault.Please find the gdb backtrace output attached.-Shrikant (gdb) r Starting program: /home/shrikant/apple/DWebKit/WebKitTools/GdkLauncher/gdklauncher [Thread debugging using libth

[webkit-dev] Accessing back/forward history

2007-02-22 Thread Oscar Cwajbaum
Hi, In my client code I need to get the length of the back and forward histories, and the page title for any given entry in the back/forward history. When I started implementing this, I found that FrameLoader has the getHistoryLength method for getting the length of the back history, but no