diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2010-08-22 16:12:09 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2010-08-22 16:12:09 +0000 |
commit | b92aba3092050f662f1c41c96f33bcb6d8b107cb (patch) | |
tree | 4ebfa19e5514c45986c93af2b6a98aa5e2033438 /gnome-base/gnome-vfs/files | |
parent | x86 stable wrt bug #333879 (diff) | |
download | historical-b92aba3092050f662f1c41c96f33bcb6d8b107cb.tar.gz historical-b92aba3092050f662f1c41c96f33bcb6d8b107cb.tar.bz2 historical-b92aba3092050f662f1c41c96f33bcb6d8b107cb.zip |
Clean up old revisions.
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'gnome-base/gnome-vfs/files')
-rw-r--r-- | gnome-base/gnome-vfs/files/gnome-vfs-2.24.2-symlink-crash.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/gnome-base/gnome-vfs/files/gnome-vfs-2.24.2-symlink-crash.patch b/gnome-base/gnome-vfs/files/gnome-vfs-2.24.2-symlink-crash.patch deleted file mode 100644 index 93a6f628f6ee..000000000000 --- a/gnome-base/gnome-vfs/files/gnome-vfs-2.24.2-symlink-crash.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 92869585b2e9ab4e262f1d6b7592fe7e2c3fb327 Mon Sep 17 00:00:00 2001 -From: Alexander Larsson <alexl@redhat.com> -Date: Wed, 10 Mar 2010 10:23:24 +0000 -Subject: Don't crash if we get a NULL symlink - -Patch from debian/ubuntu: -http://launchpadlibrarian.net/35571673/gnome-vfs_2.24.2-1ubuntu2.debdiff ---- -diff --git a/modules/ftp-method.c b/modules/ftp-method.c -index c40c323..ac02b56 100644 ---- a/modules/ftp-method.c -+++ b/modules/ftp-method.c -@@ -2678,7 +2678,12 @@ do_read_directory (GnomeVFSMethod *method, - res = GNOME_VFS_ERROR_TOO_MANY_LINKS; - break; - } -- -+ -+ if (symlink_info->symlink_name == NULL) { -+ res = GNOME_VFS_ERROR_BAD_PARAMETERS; -+ break; -+ } -+ - symlink_name = gnome_vfs_escape_path_string (symlink_info->symlink_name); - gnome_vfs_file_info_clear (symlink_info); - --- -cgit v0.8.3.1 |