Codebase list eiciel / 6d12b9b
Imported Debian patch 0.9.1-2 Michael Biebl authored 17 years ago Michael Biebl committed 15 years ago
4 changed file(s) with 35 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
0 eiciel (0.9.1-2) unstable; urgency=low
1
2 * Bumped debhelper compatibility to 5.
3 * Bumped Standards-Version to 3.7.2, no further changes required.
4 * Added patch gnome_2_14_vfs_uri.diff which fixes a crash with special URIs.
5 Closes: #375207
6
7 -- Michael Biebl <biebl@teco.edu> Sat, 24 Jun 2006 22:56:59 +0200
8
09 eiciel (0.9.1-1) unstable; urgency=low
110
211 * New upstream release.
11 Section: gnome
22 Priority: optional
33 Maintainer: Michael Biebl <biebl@teco.edu>
4 Build-Depends: cdbs, debhelper (>= 4.1.0), automake1.9, autoconf, libtool, libacl1-dev, libattr1-dev, libgtkmm-2.4-dev, libnautilus-extension-dev, pkg-config
5 Standards-Version: 3.6.2
4 Build-Depends: cdbs, debhelper (>= 5.0.0), automake1.9, autoconf, libtool, libacl1-dev, libattr1-dev, libgtkmm-2.4-dev, libnautilus-extension-dev, pkg-config
5 Standards-Version: 3.7.2
66
77 Package: eiciel
88 Architecture: any
0 Index: src/eiciel_nautilus_page.cpp
1 ===================================================================
2 --- src/eiciel_nautilus_page.cpp (revision 218)
3 +++ src/eiciel_nautilus_page.cpp (working copy)
4 @@ -92,7 +92,18 @@
5
6 // Ara obtenim la URI de Nautilus
7 uri = nautilus_file_info_get_uri (file);
8 +
9 + if (uri == NULL)
10 + {
11 + return NULL;
12 + }
13 +
14 GnomeVFSURI* guri = gnome_vfs_uri_new(uri);
15 +
16 + if (guri == NULL)
17 + {
18 + return NULL;
19 + }
20 // i comprovem que és local
21 const gchar* scheme = gnome_vfs_uri_get_scheme(guri);
22 if (strcmp(scheme, "file") != 0)