blob: 6a7c172893b3458d1b2e4642512d13340fb925b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- src/plug-in.c.orig Thu Jul 8 00:26:35 2004
+++ src/plug-in.c Thu Jul 8 00:27:06 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)
{
|