diff options
-rw-r--r-- | libs/nixio/src/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/nixio/src/io.c b/libs/nixio/src/io.c index 84bc84f6d..1d8f4484c 100644 --- a/libs/nixio/src/io.c +++ b/libs/nixio/src/io.c @@ -179,7 +179,7 @@ static int nixio_sock__recvfrom(lua_State *L, int from) { } } #ifndef __WINNT__ - else if (sock->domain == AF_UNIX) { + else if (sock->domain == AF_UNIX && alen > sizeof(sa_family_t)) { lua_pushstring(L, addr_un.sun_path); return 2; } |