wprobe: fix uninitialized variable
[openwrt.git] / package / wprobe / src / user / wprobe-util.c
index d5d440a..72feece 100644 (file)
@@ -296,7 +296,7 @@ static int run_proxy(int port)
                return 1;
        }
        while(1) {
-               unsigned int addrlen;
+               unsigned int addrlen = sizeof(struct sockaddr_in);
                int ret, c;
 
                c = accept(s, (struct sockaddr *)&sa, &addrlen);
This page took 0.023118 seconds and 4 git commands to generate.