mailing list of musl libc
 help / color / mirror / code / Atom feed
514d23444e796bfb0f94e5997b2c0cd91606af25 blob 354 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
 
#include <spawn.h>
#include <stdlib.h>
#include "fdop.h"

int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t *fa)
{
	posix_spawn_file_actions_t *next, *p;
	if (fa->__actions) {
		p = fa->__actions;
		p = p->__actions;
		while (p != fa->__actions) {
			next = p->__actions;
			free(p);
			p = next;
		}
		free(fa->__actions);
	}
	return 0;
}
debug log:

solving 514d2344 ...
found 514d2344 in https://inbox.vuxu.org/musl/YfVEgMUnilYQBbVE@wirbelwind.zhasha.com/
found 3251babb in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 3251babb556cae7cd6c81986b286ee7705e8285b	src/process/posix_spawn_file_actions_destroy.c

applying [1/1] https://inbox.vuxu.org/musl/YfVEgMUnilYQBbVE@wirbelwind.zhasha.com/
diff --git a/src/process/posix_spawn_file_actions_destroy.c b/src/process/posix_spawn_file_actions_destroy.c
index 3251babb..514d2344 100644

Checking patch src/process/posix_spawn_file_actions_destroy.c...
Applied patch src/process/posix_spawn_file_actions_destroy.c cleanly.

index at:
100644 514d23444e796bfb0f94e5997b2c0cd91606af25	src/process/posix_spawn_file_actions_destroy.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).