--- libaitio/src/sock.c 2013/08/27 19:07:55 1.2.2.3 +++ libaitio/src/sock.c 2013/08/27 19:24:37 1.2.2.4 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: sock.c,v 1.2.2.3 2013/08/27 19:07:55 misho Exp $ +* $Id: sock.c,v 1.2.2.4 2013/08/27 19:24:37 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -215,7 +215,12 @@ thrCliClean(void *arg) static void * io_thrCliWrapper(void *arg) { + void *ret; + sock_cli_t *cli = (sock_cli_t*) arg; + pthread_cleanup_push(thrCliClean, arg); + + ret = cli->cli_func(cli); pthread_cleanup_pop(42); pthread_exit(NULL);