From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.3 required=5.0 tests=MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 19202 invoked from network); 13 Oct 2021 07:25:27 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 13 Oct 2021 07:25:27 -0000 Received: (qmail 20330 invoked by uid 550); 13 Oct 2021 07:25:24 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 20300 invoked from network); 13 Oct 2021 07:25:24 -0000 Date: Wed, 13 Oct 2021 10:25:12 +0300 From: "Dmitry V. Levin" To: musl@lists.openwall.com Message-ID: <20211013072512.GB15338@altlinux.org> References: <0100017c773d8050-290fe58a-7804-4399-83f8-0ce8d845f7d2-000000@email.amazonses.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <0100017c773d8050-290fe58a-7804-4399-83f8-0ce8d845f7d2-000000@email.amazonses.com> Subject: Re: [musl] errno on writing to read-only files Hi, On Wed, Oct 13, 2021 at 01:21:31AM +0000, (GalaxyMaster) wrote: > Hello, > > I am observing the following on musl and I am not sure that this is the way it > should be: > === > galaxy@archlinux:~/musl-tests $ cat fput-to-readonly.c > #include > #include > > int main() { > FILE *f; > int i = 0; > f = fopen("fput-to-readonly.c", "r"); > errno = 0; > i = fputs("should not be written", f); > printf("i = %d (should be negative [EOF = %d])\n", i, EOF); > printf("errno = %d\n", errno); Note that the first "printf" invocation is allowed to clobber errno and this is not musl-specific. -- ldv