From 3b3fb7438dd7e7108d77c8d61290cbd68f7633b4 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 3 Sep 2010 21:03:25 -0400 Subject: [PATCH] Fix uninitialized variables in http_bad_request_test. (oops) --- test/regress_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/regress_http.c b/test/regress_http.c index ca6a23e6..fcbea725 100644 --- a/test/regress_http.c +++ b/test/regress_http.c @@ -506,7 +506,7 @@ http_bad_request_test(void) struct bufferevent *bev = NULL; evutil_socket_t fd; const char *http_request; - ev_uint16_t port, port2; + ev_uint16_t port=0, port2=0; test_ok = 0;