1
0
mirror of https://github.com/moparisthebest/socat synced 2024-12-21 22:48:48 -05:00

corrected the "fixed possible SIGSEGV" fix

This commit is contained in:
Gerhard Rieger 2009-05-05 22:34:05 +02:00
parent 7c2039ada8
commit 67a1060b49
3 changed files with 9 additions and 2 deletions

View File

@ -1,4 +1,9 @@
corrections:
corrected the "fixed possible SIGSEGV" fix because SIGSEGV still might
occur under those conditions. Thanks to Toni Mattila for first
reporting this problem.
####################### V 1.7.1.0:
new features:

View File

@ -1 +1 @@
"1.7.1.0"
"1.7.1.0-sigsegv"

View File

@ -219,8 +219,10 @@ int _xioopen_listen(struct single *xfd, int xioflags, struct sockaddr *us, sockl
char peername[256];
char sockname[256];
int ps; /* peer socket */
salen = sizeof(struct sockaddr);
pa = &_peername;
la = &_sockname;
salen = sizeof(struct sockaddr);
do {
/*? int level = E_ERROR;*/
Notice1("listening on %s", sockaddr_info(us, uslen, lisname, sizeof(lisname)));