about summary refs log tree commit diff
path: root/src/passwd/getgrent_a.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-02-01 23:51:19 -0500
committerRich Felker <dalias@aerifal.cx>2012-02-01 23:51:19 -0500
commit4948a24df21c1e80bedc1f302547c9cb26e4dbfe (patch)
tree851caa5682e2dfdf753177c0e36f25f3e25f2c44 /src/passwd/getgrent_a.c
parent147f355cb698fc90a07e48048275831de73d0fc4 (diff)
downloadmusl-4948a24df21c1e80bedc1f302547c9cb26e4dbfe.tar.gz
musl-4948a24df21c1e80bedc1f302547c9cb26e4dbfe.tar.xz
musl-4948a24df21c1e80bedc1f302547c9cb26e4dbfe.zip
make passwd/group functions safe against cancellation in stdio
these changes are a prerequisite to making stdio cancellable.
Diffstat (limited to 'src/passwd/getgrent_a.c')
-rw-r--r--src/passwd/getgrent_a.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/passwd/getgrent_a.c b/src/passwd/getgrent_a.c
index 7c63c57b..780560dd 100644
--- a/src/passwd/getgrent_a.c
+++ b/src/passwd/getgrent_a.c
@@ -1,16 +1,19 @@
 #include "pwf.h"
+#include <pthread.h>
 
 struct group *__getgrent_a(FILE *f, struct group *gr, char **line, size_t *size, char ***mem, size_t *nmem)
 {
 	ssize_t l;
 	char *s, *mems;
 	size_t i;
-
+	int cs;
+	pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
 	for (;;) {
 		if ((l=getline(line, size, f)) < 0) {
 			free(*line);
 			*line = 0;
-			return 0;
+			gr = 0;
+			goto end;
 		}
 		line[0][l-1] = 0;
 
@@ -46,5 +49,7 @@ struct group *__getgrent_a(FILE *f, struct group *gr, char **line, size_t *size,
 		mem[0][0] = 0;
 	}
 	gr->gr_mem = *mem;
+end:
+	pthread_setcancelstate(cs, 0);
 	return gr;
 }