You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
843 B
29 lines
843 B
15 years ago
|
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
|