exec_close(): accept any negative value as qemu_fclose() error
Note that we don't return the unchanged return value back yet, because we need to change all qemu_fclose() callers to accept any positive value as success. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
		
							parent
							
								
									90d8454ed0
								
							
						
					
					
						commit
						ce812673dc
					
				@ -50,7 +50,7 @@ static int exec_close(MigrationState *s)
 | 
				
			|||||||
        ret = qemu_fclose(s->opaque);
 | 
					        ret = qemu_fclose(s->opaque);
 | 
				
			||||||
        s->opaque = NULL;
 | 
					        s->opaque = NULL;
 | 
				
			||||||
        s->fd = -1;
 | 
					        s->fd = -1;
 | 
				
			||||||
        if (ret != -1 &&
 | 
					        if (ret >= 0 &&
 | 
				
			||||||
            WIFEXITED(ret)
 | 
					            WIFEXITED(ret)
 | 
				
			||||||
            && WEXITSTATUS(ret) == 0) {
 | 
					            && WEXITSTATUS(ret) == 0) {
 | 
				
			||||||
            ret = 0;
 | 
					            ret = 0;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user