| 885 | } |
| 886 | |
| 887 | static void |
| 888 | vhost_user_socket_mem_free(struct vhost_user_socket *vsocket) |
| 889 | { |
| 890 | if (vsocket == NULL) |
| 891 | return; |
| 892 | |
| 893 | free(vsocket->path); |
| 894 | free(vsocket); |
| 895 | } |
| 896 | |
| 897 | /* |
| 898 | * Register a new vhost-user socket; here we could act as server |
no test coverage detected