summaryrefslogtreecommitdiff
path: root/lang/gnustep-base/files/NSFileManager.m.patch
diff options
context:
space:
mode:
Diffstat (limited to 'lang/gnustep-base/files/NSFileManager.m.patch')
-rw-r--r--lang/gnustep-base/files/NSFileManager.m.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/lang/gnustep-base/files/NSFileManager.m.patch b/lang/gnustep-base/files/NSFileManager.m.patch
deleted file mode 100644
index e0f6cd636aa2..000000000000
--- a/lang/gnustep-base/files/NSFileManager.m.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- Source/NSFileManager.m.orig Fri Mar 18 05:17:39 2005
-+++ Source/NSFileManager.m Fri Apr 1 06:37:16 2005
-@@ -757,6 +757,12 @@
-
- #endif /* !MINGW */
-
-+ // dont change when we have no attibutes
-+ if (attributes == nil)
-+ {
-+ return YES;
-+ }
-+
- // change attributes of last directory
- if ([attributes count] == 0)
- {
-@@ -785,6 +791,12 @@
- int len;
- int written;
- #endif
-+
-+ if (path == nil) // don't try to do anything when path is nil
-+ {
-+ ASSIGN(_lastError, @"Could not create directory - name is nil");
-+ return NO;
-+ }
-
- /* This is consitent with MacOSX - just return NO for an invalid path. */
- if ([path length] == 0)