mailing list of musl libc
 help / color / mirror / code / Atom feed
From: "Kirill Ternosvky" <kternovsky@yandex.ru>
To: musl@lists.openwall.com
Subject: musl regression tests
Date: Thu, 18 Jul 2013 19:20:23 -0400	[thread overview]
Message-ID: <op.w0fxr9s7bp85gn@cctorw7d10.capitalc.internal> (raw)

/* FILE: scanf-nullbyte-char.c
/*
  Commit: ef5507867b59d19f21437970e87b5d0415c07b2e
  scanf should not append null byte after scanning %c
*/
#include <stdio.h>
#include "test.h"

int main(void)
{
	char target_buffer[2] = { 'a', 'a' };
	char source_buffer = 'b';

	sscanf(&source_buffer, "%c", &target_buffer);

	if(target_buffer[1] != 'a' && !target_buffer[1])
	{
		t_error("scanf stored null byte for %%c conversion\n");
	}

	return 0;
}


             reply	other threads:[~2013-07-18 23:20 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-18 23:20 Kirill Ternosvky [this message]
2013-07-18 23:49 ` Szabolcs Nagy
2013-07-19 15:40 ` Kirill Ternosvky
2013-07-19 16:45 ` Kirill Ternosvky
2013-07-19 19:37 ` Kirill Ternosvky

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=op.w0fxr9s7bp85gn@cctorw7d10.capitalc.internal \
    --to=kternovsky@yandex.ru \
    --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).