mailing list of musl libc
 help / color / mirror / code / Atom feed
* musl regression tests
@ 2013-07-18 23:20 Kirill Ternosvky
  2013-07-18 23:49 ` Szabolcs Nagy
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Kirill Ternosvky @ 2013-07-18 23:20 UTC (permalink / raw)
  To: musl

/* 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;
}


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-07-19 19:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-18 23:20 musl regression tests Kirill Ternosvky
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

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).