mailing list of musl libc
 help / color / mirror / code / Atom feed
dbb9ac52fcac1251266bf0c12558342ca794bd7a blob 315 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
 
#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 = fa->__actions;
	for (p = p->__actions; p != fa->__actions; p = next) {
		next = p->__actions;
		free(p);
	}
	if (p != fa)
		free(p);
	return 0;
}
debug log:

solving dbb9ac52 ...
found dbb9ac52 in https://inbox.vuxu.org/musl/Yf152c5ZpA+TY4X+@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/Yf152c5ZpA+TY4X+@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..dbb9ac52 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 dbb9ac52fcac1251266bf0c12558342ca794bd7a	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).