ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/mports/trunk/lang/mono/files/patch-mono_eglib_gfile-posix.c
Revision: 24692
Committed: Fri Nov 23 17:17:39 2018 UTC (5 years, 5 months ago) by laffer1
Content type: text/plain
File size: 341 byte(s)
Log Message:
update patchset

File Contents

# Content
1 --- mono/eglib/gfile-posix.c.orig 2018-01-10 08:03:25 UTC
2 +++ mono/eglib/gfile-posix.c
3 @@ -161,7 +161,7 @@ g_get_current_dir (void)
4 do {
5 buffer = g_realloc (buffer, s);
6 r = getcwd (buffer, s);
7 - fail = (r == NULL && errno == ERANGE);
8 + fail = (r == NULL && (errno == ERANGE || errno == 0));
9 if (fail) {
10 s <<= 1;
11 }

Properties

Name Value
svn:eol-style native
svn:mime-type text/plain