Here is a patch:

--- seahorse-0.9.3/libseahorse/seahorse-ssh-key.c       2006-08-24 
22:13:08.000000000 +0200
+++ seahorse-0.9.3.patched/libseahorse/seahorse-ssh-key.c       2006-08-28 
00:39:39.000000000 +0200
@@ -384,11 +384,11 @@ seahorse_ssh_key_get_cannonical_id (cons
     /* Strip out all non alpha numeric chars */
     for(p = hex + x + 1; *p; p++) {
         if (g_ascii_isalnum(*p))
-            p[0 - off] = p[0];
+            *(p - off) = *p;
         else
             off++;
     }
-    p[0 - off] = 0;
+    *(p - off) = 0;
     
     /* Shorten where necessary */
     l = strlen (hex);

-- 
[Edgy] seahorse crashed at startup (segmentation fault)
https://launchpad.net/bugs/57433

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to