Never use sprintf. tor_snprintf instead. Bug in tests, not in any released tor.

This commit is contained in:
Nick Mathewson 2016-03-22 08:52:17 -04:00
parent a17537a238
commit 9dff41694a

View File

@ -255,7 +255,7 @@ test_dir_handle_get_bytes_txt(void *data)
tt_assert(strstr(header, "Content-Encoding: identity\r\n"));
tt_assert(strstr(header, "Pragma: no-cache\r\n"));
sprintf(buff, "Content-Length: %ld\r\n", (long) body_len);
tor_snprintf(buff, sizeof(buff), "Content-Length: %ld\r\n", (long) body_len);
tt_assert(strstr(header, buff));
tt_int_op(body_used, OP_EQ, strlen(body));