C warning cleanup
parent
fed7383903
commit
b4ab74e722
|
@ -76,8 +76,8 @@ EOF
|
||||||
{
|
{
|
||||||
int fd=open("$config{wikistatedir}/cgilock", O_CREAT | O_RDWR, 0666);
|
int fd=open("$config{wikistatedir}/cgilock", O_CREAT | O_RDWR, 0666);
|
||||||
if (fd != -1 && flock(fd, LOCK_EX) == 0) {
|
if (fd != -1 && flock(fd, LOCK_EX) == 0) {
|
||||||
char *fd_s;
|
char *fd_s=malloc(8);
|
||||||
asprintf(&fd_s, "%i", fd);
|
sprintf(fd_s, "%i", fd);
|
||||||
setenv("IKIWIKI_CGILOCK_FD", fd_s, 1);
|
setenv("IKIWIKI_CGILOCK_FD", fd_s, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -105,7 +105,7 @@ extern char **environ;
|
||||||
char *newenviron[$#envsave+6];
|
char *newenviron[$#envsave+6];
|
||||||
int i=0;
|
int i=0;
|
||||||
|
|
||||||
addenv(char *var, char *val) {
|
void addenv(char *var, char *val) {
|
||||||
char *s=malloc(strlen(var)+1+strlen(val)+1);
|
char *s=malloc(strlen(var)+1+strlen(val)+1);
|
||||||
if (!s)
|
if (!s)
|
||||||
perror("malloc");
|
perror("malloc");
|
||||||
|
|
Loading…
Reference in New Issue