From: Ulrich Drepper Date: Sun, 26 Aug 2007 01:27:49 +0000 (+0000) Subject: * posix/tst-rfc3484.c (__idna_to_unicode_lzlz): Initialize *OUTPUT. X-Git-Tag: cvs/fedora-glibc-20070827T2032~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ec1e04dedb30596bb5bccad675feb0608f92cea9;p=thirdparty%2Fglibc.git * posix/tst-rfc3484.c (__idna_to_unicode_lzlz): Initialize *OUTPUT. * posix/tst-rfc3484-2.c (__idna_to_unicode_lzlz): Likewise. --- diff --git a/ChangeLog b/ChangeLog index c1096d0c3c4..e07b46b0790 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-08-25 Ulrich Drepper + * posix/tst-rfc3484.c (__idna_to_unicode_lzlz): Initialize *OUTPUT. + * posix/tst-rfc3484-2.c (__idna_to_unicode_lzlz): Likewise. + * debug/Makefile: Disable format checking when compiling tst-chk?.c. * config.make.in (datarootdir): Add to shut up configure. diff --git a/posix/tst-rfc3484-2.c b/posix/tst-rfc3484-2.c index 2536da8f87b..ae802c06529 100644 --- a/posix/tst-rfc3484-2.c +++ b/posix/tst-rfc3484-2.c @@ -26,6 +26,7 @@ __idna_to_ascii_lz (const char *input, char **output, int flags) int __idna_to_unicode_lzlz (const char *input, char **output, int flags) { + *output = NULL; return 0; } diff --git a/posix/tst-rfc3484.c b/posix/tst-rfc3484.c index 2e74e9737fb..352a7579ac5 100644 --- a/posix/tst-rfc3484.c +++ b/posix/tst-rfc3484.c @@ -26,6 +26,7 @@ __idna_to_ascii_lz (const char *input, char **output, int flags) int __idna_to_unicode_lzlz (const char *input, char **output, int flags) { + *output = NULL; return 0; }