You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
==9657== Conditional jump or move depends on uninitialised value(s)
==9657== at 0x12959D: Socket_connect (socket_linux.c:319)
==9657== by 0x127F72: handleConnection (cs104_connection.c:733)
==9657== by 0x488E181: start_thread (pthread_create.c:486)
==9657== by 0x49C3B1E: clone (clone.S:95)
==9657== Uninitialised value was created by a stack allocation
==9657== at 0x12937F: Socket_connect (socket_linux.c:280)
Looks like it's happens after timed out connection attempt.
Thank you.
The text was updated successfully, but these errors were encountered:
…z-automation#57)
getsockopt() may return -1, set ERRNO = EINPROGRESS (115: Operation now in progress)
and not initialze so_error on Kubuntu 19.10 AMD64 with kernel 5.3.0-23-generic
So, initialize the value to -1, and add check for getsockopt() result
(and add log message if DEBUG_SOCKET is set).
Fixesmz-automation#57
Hello.
Valgrind says:
Looks like it's happens after timed out connection attempt.
Thank you.
The text was updated successfully, but these errors were encountered: