summaryrefslogtreecommitdiff
path: root/libc/pwd_grp/pwd_grp.c
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2003-12-04 22:57:32 +0000
committerManuel Novoa III <mjn3@codepoet.org>2003-12-04 22:57:32 +0000
commit386eee7b494be91e20fdd760bc01b20534e5fa7b (patch)
tree07a086459f6292ee2d7aba99b1bbb154b6346896 /libc/pwd_grp/pwd_grp.c
parentbbe7a35e0037e21913c655913f11a37668d472bf (diff)
Fix infinite loop in putgrent (forgotten increment).
Diffstat (limited to 'libc/pwd_grp/pwd_grp.c')
-rw-r--r--libc/pwd_grp/pwd_grp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/pwd_grp/pwd_grp.c b/libc/pwd_grp/pwd_grp.c
index 74f784231..026034515 100644
--- a/libc/pwd_grp/pwd_grp.c
+++ b/libc/pwd_grp/pwd_grp.c
@@ -803,6 +803,7 @@ int putgrent(const struct group *__restrict p, FILE *__restrict f)
if (fprintf(f, fmt, *m) < 0) {
break;
}
+ ++m;
fmt = format;
} while (1);