File tree Expand file tree Collapse file tree 2 files changed +4
-12
lines changed Expand file tree Collapse file tree 2 files changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -1213,12 +1213,10 @@ send_blocking_mode(void *arg)
12131213 __sync_add_and_fetch (& cl -> container_id , 1 );
12141214 }
12151215
1216- pthread_exit (NULL );
1217-
12181216cleanup :
12191217 disconnect_client (c , cl );
12201218 free (arg );
1221- return NULL ;
1219+ pthread_exit ( NULL ) ;
12221220}
12231221
12241222static void *
@@ -1314,12 +1312,10 @@ send_non_blocking_mode(void *arg)
13141312 }
13151313 }
13161314
1317- pthread_exit (NULL );
1318-
13191315cleanup :
13201316 disconnect_client (c , cl );
13211317 free (arg );
1322- return NULL ;
1318+ pthread_exit ( NULL ) ;
13231319}
13241320
13251321/**
Original file line number Diff line number Diff line change @@ -1351,12 +1351,10 @@ send_blocking_mode(void *arg)
13511351 __sync_add_and_fetch (& cl -> container_id , 1 );
13521352 }
13531353
1354- pthread_exit (NULL );
1355-
13561354cleanup :
13571355 disconnect_client (c , cl );
13581356 free (arg );
1359- return NULL ;
1357+ pthread_exit ( NULL ) ;
13601358}
13611359
13621360static void *
@@ -1449,12 +1447,10 @@ send_non_blocking_mode(void *arg)
14491447 }
14501448 }
14511449
1452- pthread_exit (NULL );
1453-
14541450cleanup :
14551451 disconnect_client (c , cl );
14561452 free (arg );
1457- return NULL ;
1453+ pthread_exit ( NULL ) ;
14581454}
14591455
14601456
You can’t perform that action at this time.
0 commit comments