mirror of
				https://github.com/rtlsdrblog/rtl-sdr-blog.git
				synced 2025-10-31 00:48:08 +01:00 
			
		
		
		
	rtl_tcp: Initialize listensocket
Older versions of GCC will complain that it can be used uninitialized - which is not the case, but it breaks our Jenkins build as we build with -Werror.
This commit is contained in:
		| @@ -394,7 +394,7 @@ int main(int argc, char **argv) | ||||
| 	void *status; | ||||
| 	struct timeval tv = {1,0}; | ||||
| 	struct linger ling = {1,0}; | ||||
| 	SOCKET listensocket; | ||||
| 	SOCKET listensocket = 0; | ||||
| 	socklen_t rlen; | ||||
| 	fd_set readfds; | ||||
| 	u_long blockmode = 1; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user