Большое спасибо!
I applied all.
I thought that it's about time to release just 1.0.0, just for the
facade. What do you think?
Regards,
Lluís.
> --
> You received this message because you are subscribed to the Google Groups "taskspooler" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to
taskspooler...@googlegroups.com.
> To post to this group, send an email to
tasks...@googlegroups.com.
> Visit this group at
https://groups.google.com/group/taskspooler.
> For more options, visit
https://groups.google.com/d/optout.
> Description: Fix memory leak
> Author: Alexander Inyukhin <
shu...@sectorb.msk.ru>
> Last-Update: 2012-06-29
> --- a/error.c
> +++ b/error.c
> @@ -74,12 +74,16 @@
>
> fd = open(new_path, O_CREAT | O_APPEND | O_WRONLY, 0600);
> if (fd == -1)
> + {
> + free(new_path);
> return 0;
> + }
>
> out = fdopen(fd, "a");
> if (out == NULL)
> {
> close(fd);
> + free(new_path);
> return 0;
> }
>
> Description: Respect external CFLAGS and CPPFLAGS
> Author: Alexander Inyukhin <
shu...@sectorb.msk.ru>
> Forwarded: yes
> Last-Update: 2012-06-09
> --- a/Makefile
> +++ b/Makefile
> @@ -1,6 +1,7 @@
> PREFIX?=/usr/local
> GLIBCFLAGS=-D_XOPEN_SOURCE=500 -D__STRICT_ANSI__
> -CFLAGS=-pedantic -ansi -Wall -g -O0
> +CPPFLAGS+=$(GLIBCFLAGS)
> +CFLAGS?=-pedantic -ansi -Wall -g -O0
> OBJECTS=main.o \
> server.o \
> server_start.o \
> @@ -32,7 +33,7 @@
>
>
> .c.o:
> - $(CC) $(CFLAGS) $(GLIBCFLAGS) -c $<
> + $(CC) $(CFLAGS) $(CPPFLAGS) -c $<
>
> # Dependencies
> main.o: main.c main.h
> Description: Fix GCC type warning
> Author: Alexander Inyukhin <
shu...@sectorb.msk.ru>
> Forwarded: yes
> Last-Update: 2012-05-27
> --- a/env.c
> +++ b/env.c
> @@ -40,7 +40,7 @@
> if (p[1] != 1 && p[1] != 2)
> close(p[1]);
> close(p[0]);
> - execlp("/bin/sh", "/bin/sh", "-c", command, 0);
> + execlp("/bin/sh", "/bin/sh", "-c", command, (char*)NULL);
> error("/bin/sh exec error");
> case -1:
> error("Fork error");
> Description: Fix typo
> Author: Alexander Inyukhin <
shu...@sectorb.msk.ru>
> Last-Update: 2016-03-20
> --- a/jobs.c
> +++ b/jobs.c
> @@ -360,7 +360,7 @@
> add_notify_errorlevel_to(depended_job, p->jobid);
> else
> warning("The jobid %i is queued to do_depend on the jobid %i"
> - " suddenly non existant in the queue", p->jobid,
> + " suddenly non existent in the queue", p->jobid,
> p->depend_on);
> }
> else /* Otherwise take the finished job, or the last_errorlevel */