Don't leave fd undefined.
When gcc isn't optimizing well, it might not realize that it's not possible to return fd without initializing it, and then the build fails due to -Werror.release
parent
51ab5a0c8b
commit
83afb93004
|
@ -131,7 +131,7 @@ static int remote_bitbang_init_tcp(void)
|
||||||
{
|
{
|
||||||
struct addrinfo hints = { .ai_family = AF_UNSPEC, .ai_socktype = SOCK_STREAM };
|
struct addrinfo hints = { .ai_family = AF_UNSPEC, .ai_socktype = SOCK_STREAM };
|
||||||
struct addrinfo *result, *rp;
|
struct addrinfo *result, *rp;
|
||||||
int fd;
|
int fd = 0;
|
||||||
|
|
||||||
LOG_INFO("Connecting to %s:%s",
|
LOG_INFO("Connecting to %s:%s",
|
||||||
remote_bitbang_host ? remote_bitbang_host : "localhost",
|
remote_bitbang_host ? remote_bitbang_host : "localhost",
|
||||||
|
|
Loading…
Reference in New Issue