Fossil

Check-in [6e7211a26d]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Clear the environment by setting its first entry to NULL; fixes the macOS-bound bug as per [https://fossil-scm.org/forum/forumpost/2fcb3a490b|forumpost/2fcb3a490b]
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 6e7211a26da8981a3a7e396174dfd369e9111cfa8897ced6e59799a38d520297
User & Date: ashepilko 2020-03-23 01:08:41.267
Context
2020-03-24
15:04
Add the "nsm" or "No-SubMenu" query parameter to the /wiki page. check-in: 993700abaf user: drh tags: trunk
2020-03-23
01:08
Clear the environment by setting its first entry to NULL; fixes the macOS-bound bug as per [https://fossil-scm.org/forum/forumpost/2fcb3a490b|forumpost/2fcb3a490b] check-in: 6e7211a26d user: ashepilko tags: trunk
2020-03-22
15:58
Further enhancements to the ticket history mechanism so that it takes into account the difference between TICKET and TICKETCHNG fields. check-in: fc70ec085e user: drh tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/file.c.
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
    }
  }else{
    rc = 1;
  }
  return rc;
#else
  extern char **environ;
  environ = 0;
  return 0;
#endif
}

/*
** Like fopen() but always takes a UTF8 argument.
**







|







1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
    }
  }else{
    rc = 1;
  }
  return rc;
#else
  extern char **environ;
  environ[0] = 0;
  return 0;
#endif
}

/*
** Like fopen() but always takes a UTF8 argument.
**