found 325124 0.2.7-2
close 325124 0.3.0-2
thanks

ok, tweaking the versioned bts a bit.

I will upload the fixed version to stable proposed updates. So you don't
need to care for it. Anyway, I attach the proposed patch adapted to stable
kazehakase here too. I will upload on saturday after I could do some
final testing on my stable box at home.

Any testing results from you or other persons interested in this are
of course welcome. To test: the new mozilla package for sarge can be 
found here:
      http://people.debian.org/~asac/security

Thanks

On Wed, Sep 07, 2005 at 12:06:25AM +0900, Hidetaka Iwai wrote:
> Hello,
> 
> Alexander Sack <[EMAIL PROTECTED]> wrote:
> Message-ID: <[EMAIL PROTECTED]>
> 
> > severity 325124 grave
> > tags 325124 + patch
> > thanks
> > 
> > Grave, since it always segfaults if you go the default way:
> > After startup, just enter url and press enter -> segfault
> > 
> > I attach a patch that fixes this for sarge (and maybe sid too)
> > (for the upcoming mozilla security fix). Please be prepared to 
> > upload the new version to stable-proposed-updates as soon as 
> > the next mozilla security update lands. I will ping you to remind 
> > you as soon as mozilla went in.
> 
> Thank you for your bug report and the patch.  This bug may be due to
> the change of boot-up sequence of mozilla 1.7.10.  This change is
> reverted in mozilla 1.7.11 and upstream recommends the use of mozilla
> 1.7.11.
> 
> I will upload the new package applied this patch and close this bug
> once.  If mozilla-browser of sarge is updated and this problem occurs
> again, please reopen this bug.
> 
> regards,



-- 
 GPG messages preferred.   |  .''`.  ** Debian GNU/Linux **
 Alexander Sack            | : :' :      The  universal
 [EMAIL PROTECTED]           | `. `'      Operating System
 http://www.asoftsite.org  |   `-    http://www.debian.org
--- src/mozilla/kz-mozembed.cpp.orig    2005-09-08 10:53:35.299121438 +0000
+++ src/mozilla/kz-mozembed.cpp 2005-09-08 10:53:42.782841721 +0000
@@ -524,7 +524,7 @@
        // After "about:balnk" was loaded, the first url start to load.  
        if (url)
                kzembed->priv->first_url = g_strdup(url);
-       //kz_moz_embed_load_url(KZ_EMBED(kzembed), url);
+       kz_moz_embed_load_url(KZ_EMBED(kzembed), url);
 
        return GTK_WIDGET(kzembed);
 }
@@ -933,6 +933,9 @@
 static void
 net_stop_proccess (KzMozEmbed *kzembed)
 {
+       if(!kzembed->priv || !kzembed->priv->wrapper)
+               return;
+
        gboolean create_thumbnail = FALSE, store_cache = TRUE;
        KZ_CONF_GET("Global", "create_thumbnail", create_thumbnail, BOOL);
        KZ_CONF_GET("History", "store_cache", store_cache, BOOL);

Reply via email to