diff options
Diffstat (limited to 'tests/libtest/lib1502.c')
-rw-r--r-- | tests/libtest/lib1502.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/libtest/lib1502.c b/tests/libtest/lib1502.c index 2336a8d3a..e4e1a162a 100644 --- a/tests/libtest/lib1502.c +++ b/tests/libtest/lib1502.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -51,7 +51,8 @@ int test(char *URL) /* DNS cache injection */ struct curl_slist *dns_cache_list; - sprintf(redirect, "google.com:%s:%s", libtest_arg2, libtest_arg3); + snprintf(redirect, sizeof(redirect), "google.com:%s:%s", libtest_arg2, + libtest_arg3); start_test_timing(); |