prevent CNAME/PTR parsing from reading data past the response end
[musl] / src / stdio / fputs.c
index 1112b19..1cf344f 100644 (file)
@@ -4,8 +4,7 @@
 int fputs(const char *restrict s, FILE *restrict f)
 {
        size_t l = strlen(s);
-       if (!l) return 0;
-       return (int)fwrite(s, l, 1, f) - 1;
+       return (fwrite(s, 1, l, f)==l) - 1;
 }
 
 weak_alias(fputs, fputs_unlocked);