summaryrefslogtreecommitdiff
path: root/time/gnotime/patches/patch-ah
blob: 1b3236cb66f6b59bc4cb61d1a24613c3aa811904 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$NetBSD: patch-ah,v 1.1 2004/11/24 22:35:25 kristerw Exp $

--- src/plug-in.c.orig	Wed Nov 24 22:34:26 2004
+++ src/plug-in.c	Wed Nov 24 22:35:31 2004
@@ -96,6 +96,8 @@
 {
 	const char *title, *path, *tip;
 	NewPluginDialog *dlg = data;
+	GnomeVFSURI *parsed_uri;
+	gboolean exists;
 
 	/* Get the dialog contents */
 	title = gtk_entry_get_text (dlg->plugin_name);
@@ -103,9 +105,8 @@
 	tip = gtk_entry_get_text (dlg->plugin_tooltip);
 
 	/* Do a basic sanity check */
-	GnomeVFSURI *parsed_uri;
 	parsed_uri = gnome_vfs_uri_new (path);
-	gboolean exists = gnome_vfs_uri_exists (parsed_uri);
+	exists = gnome_vfs_uri_exists (parsed_uri);
 	gnome_vfs_uri_unref (parsed_uri);
 	if (!exists)
 	{