Changeset 584
- Timestamp:
- Jan 2, 2025, 10:13:23 AM (8 days ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/Changelog
r583 r584 1 1 4.5.2 2 * fix segfault with --enable-static on unresolvable host name 2 3 * fix autoreconf (problem reported by Pascal de Bruijn) 3 4 * add missing items to distclean Makefile target (problem -
trunk/src/sh_ipvx.c
r560 r584 316 316 return host_entry->h_name; 317 317 } else { 318 for (p = host_entry->h_aliases; *p; ++p) {318 for (p = host_entry->h_aliases; (p && *p); ++p) { 319 319 if (strchr(*p, '.')) 320 320 return *p; -
trunk/src/sh_static.c
r570 r584 1843 1843 struct hostent * sh_gethostbyname(const char *name) 1844 1844 { 1845 static struct hostent h;1845 static struct hostent h = { NULL, NULL, 0, 0, NULL}; 1846 1846 static char buf[sizeof(struct in_addr) + 1847 1847 sizeof(struct in_addr *)*2 +
Note:
See TracChangeset
for help on using the changeset viewer.