Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Do not assume that the PATH_INFO environment variable is set by CGI. Give it a default value to avoid segfaults (on Solaris). |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
88383d8d4ac1dd71f953f1305f3d395c |
| User & Date: | drh 2011-02-21 13:17:28.681 |
Context
|
2011-02-21
| ||
| 14:21 | Infrastructure changes toward adding graphical merging options. ... (check-in: b9abb86798 user: drh tags: trunk) | |
| 13:17 | Do not assume that the PATH_INFO environment variable is set by CGI. Give it a default value to avoid segfaults (on Solaris). ... (check-in: 88383d8d4a user: drh tags: trunk) | |
|
2011-02-20
| ||
| 21:24 | Suppress unnecessary "CHANGED" lines in diff output. ... (check-in: 1d49c2f65c user: drh tags: trunk) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
881 882 883 884 885 886 887 | char *zPath = NULL; int idx; int i; /* If the repository has not been opened already, then find the ** repository based on the first element of PATH_INFO and open it. */ | | | 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 |
char *zPath = NULL;
int idx;
int i;
/* If the repository has not been opened already, then find the
** repository based on the first element of PATH_INFO and open it.
*/
zPathInfo = PD("PATH_INFO","");
if( !g.repositoryOpen ){
char *zRepo;
const char *zOldScript = PD("SCRIPT_NAME", "");
char *zNewScript;
int j, k;
i = 1;
|
| ︙ | ︙ |