vhost-user: fix memory leak
g_free() was moved from vhost_net_cleanup in commit e6bcb1b, so we should free net after vhost_net_cleanup Signed-off-by: linzhecheng <linzhecheng@huawei.com> Reviewed-by: Marc-André Lureau < marcandre.lureau@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
This commit is contained in:
		
							parent
							
								
									8cb340c613
								
							
						
					
					
						commit
						a38a498dc1
					
				@ -109,6 +109,7 @@ static int vhost_user_start(int queues, NetClientState *ncs[], CharBackend *be)
 | 
				
			|||||||
err:
 | 
					err:
 | 
				
			||||||
    if (net) {
 | 
					    if (net) {
 | 
				
			||||||
        vhost_net_cleanup(net);
 | 
					        vhost_net_cleanup(net);
 | 
				
			||||||
 | 
					        g_free(net);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    vhost_user_stop(i, ncs);
 | 
					    vhost_user_stop(i, ncs);
 | 
				
			||||||
    return -1;
 | 
					    return -1;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user