mailing list of musl libc
 help / color / mirror / code / Atom feed
From: John Scott <jscott@posteo.net>
To: musl@lists.openwall.com
Subject: [musl] fputs/fputc doesn't set errno on failure
Date: Thu, 08 Oct 2020 10:55:47 -0400	[thread overview]
Message-ID: <20475045.GjpEljjT90@t450> (raw)

[-- Attachment #1: Type: text/plain, Size: 699 bytes --]

Hi,

I'm not subscribed, please keep me CC'd.

In this corner case, errno is unset despite fputs giving an error. I'm on Debian testing using musl-gcc 1.2.1.

#define _POSIX_C_SOURCE 200809L
#include <assert.h>
#include <errno.h>
#include <stdio.h>
int main(void) {
	FILE *f = fopen("/", "r");
	if(f == NULL) {
		perror("fopen()");
	}
	if(fputs("Hello world\n", f) == EOF) {
		assert(errno);
		perror("fputs()");
	}
}

With glibc this prints EBADF for fputs.

The wiki page about writing tests [1], which I thought this would be a good candidate for, has the 404 link http://nsz.repo.hu/git/?p=libc-test

Please let me know if I can help debugging.

[1] https://wiki.musl-libc.org/writing-tests.html

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

             reply	other threads:[~2020-10-08 15:50 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-08 14:55 John Scott [this message]
2020-10-08 16:21 ` Rich Felker
2020-10-08 16:23 ` Markus Wichmann
2020-10-08 19:55   ` Szabolcs Nagy

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20475045.GjpEljjT90@t450 \
    --to=jscott@posteo.net \
    --cc=musl@lists.openwall.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).