libs/nixio: Fix recvfrom() return values for unnamed unix sockets, patch by capnbry...
authorJo-Philipp Wich <jow@openwrt.org>
Sun, 17 Jul 2011 09:04:43 +0000 (09:04 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Sun, 17 Jul 2011 09:04:43 +0000 (09:04 +0000)
libs/nixio/src/io.c

index 84bc84f..1d8f448 100644 (file)
@@ -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;
                }