diff options
Diffstat (limited to 'posix')
-rw-r--r-- | posix/tst-rfc3484-2.c | 4 | ||||
-rw-r--r-- | posix/tst-rfc3484.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/posix/tst-rfc3484-2.c b/posix/tst-rfc3484-2.c index e2800b48c6..b3987c8cd5 100644 --- a/posix/tst-rfc3484-2.c +++ b/posix/tst-rfc3484-2.c @@ -11,9 +11,11 @@ void attribute_hidden -__check_pf (bool *p1, bool *p2) +__check_pf (bool *p1, bool *p2, struct in6addrinfo **in6ai, size_t *in6ailen) { *p1 = *p2 = true; + *in6ai = NULL; + *in6ailen = 0; } int __idna_to_ascii_lz (const char *input, char **output, int flags) diff --git a/posix/tst-rfc3484.c b/posix/tst-rfc3484.c index 378e43a011..abfb76d543 100644 --- a/posix/tst-rfc3484.c +++ b/posix/tst-rfc3484.c @@ -11,9 +11,11 @@ void attribute_hidden -__check_pf (bool *p1, bool *p2) +__check_pf (bool *p1, bool *p2, struct in6addrinfo **in6ai, size_t *in6ailen) { *p1 = *p2 = true; + *in6ai = NULL; + *in6ailen = 0; } int __idna_to_ascii_lz (const char *input, char **output, int flags) |