Package: seahorse
Version: 2.20-1
Severity: important
Tags: patch
Usertags: implicit-pointer-conversion
Our automated buildd log filter[1] detected a problem that is likely to
cause your package to segfault on architectures where the size of a
pointer is greater than the size of an integer, such as ia64 and amd64.
This is often due to a missing function prototype definition.
For more information, see [2].
It looks like this package is missing the prototype for
gnome_vfs_unescape_string - not only that, but its also only passing
one argument where two are required. I've made a guess at what was
intended for the second argument based on the comments for this
function in the header file.
[1] http://people.debian.org/~dannf/check-implicit-pointer-functions
[2] http://wiki.debian.org/ImplicitPointerConversions
----- Forwarded message from Build Daemon <[EMAIL PROTECTED]> -----
X-Spam-Checker-Version: SpamAssassin 3.1.7-deb (2006-10-05) on ldl.fc.hp.com
X-Spam-Level:
X-Spam-Status: No, score=-1.4 required=3.5 tests=AWL,BAYES_00,UNDISC_RECIPS
autolearn=disabled version=3.1.7-deb
X-Virus-Scanned: Debian amavisd-new at ldl.fc.hp.com
Subject: Log for successful build of seahorse_2.20-1 (dist=unstable)
Date: Wed, 19 Sep 2007 18:16:47 +0000 (GMT)
From: Build Daemon <[EMAIL PROTECTED]>
To: undisclosed-recipients: ;
X-PMX-Version: 5.3.1.294258, Antispam-Engine: 2.5.1.298604, Antispam-Data:
2007.9.19.105924
Debian-Buildd-Error: Yes
Function `gnome_vfs_unescape_string' implicitly converted to pointer at
seahorse-tool-progress.c:277
----- End forwarded message -----
--
dann frazier
--- seahorse-2.20.orig/plugins/nautilus/seahorse-tool-progress.c 2007-06-22 12:08:15.000000000 -0600
+++ seahorse-2.20/plugins/nautilus/seahorse-tool-progress.c 2007-09-19 15:39:23.000000000 -0600
@@ -24,6 +24,7 @@
#include <signal.h>
#include <gnome.h>
+#include <libgnomevfs/gnome-vfs-utils.h>
#include "seahorse-gtkstock.h"
#include "seahorse-util.h"
@@ -274,7 +275,7 @@ seahorse_tool_progress_update (gdouble f
gchar *msg;
if (message != NULL)
- msg = gnome_vfs_unescape_string (message);
+ msg = gnome_vfs_unescape_string (message, "/");
else
msg = g_strdup ("");