Changeset 6b98359629dd39bf8458179390a951ccd05fbea7 for src/modules
- Timestamp:
- 05/27/10 17:24:56 (3 years ago)
- git-parent:
- Files:
-
- src/modules/libstomp.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
src/modules/libstomp.c
ra5e761d r6b98359 86 86 result = APR_SUCCESS; 87 87 rc = apr_socket_shutdown(connection->socket, APR_SHUTDOWN_WRITE); 88 if( r esult!=APR_SUCCESS )88 if( rc!=APR_SUCCESS ) 89 89 result = rc; 90 90 91 91 if( connection->socket != NULL ) { 92 92 rc = apr_socket_close(connection->socket); 93 if( r esult!=APR_SUCCESS )93 if( rc!=APR_SUCCESS ) 94 94 result = rc; 95 95 connection->socket=NULL; 96 96 } 97 97 *connection_ref=NULL; 98 return r c;98 return result; 99 99 } 100 100
