vl: Avoid qerror_report_err() outside QMP command handlers
qerror_report_err() is a transitional interface to help with converting existing monitor commands to QMP. It should not be used elsewhere. Replace by error_report_err() in initial startup helpers machine_set_property() and object_create(). Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
		
							parent
							
								
									bc09a287d8
								
							
						
					
					
						commit
						a720a390b1
					
				
							
								
								
									
										6
									
								
								vl.c
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								vl.c
									
									
									
									
									
								
							| @ -2581,8 +2581,7 @@ static int machine_set_property(const char *name, const char *value, | ||||
|     g_free(qom_name); | ||||
| 
 | ||||
|     if (local_err) { | ||||
|         qerror_report_err(local_err); | ||||
|         error_free(local_err); | ||||
|         error_report_err(local_err); | ||||
|         return -1; | ||||
|     } | ||||
| 
 | ||||
| @ -2635,8 +2634,7 @@ out: | ||||
|     g_free(type); | ||||
|     g_free(dummy); | ||||
|     if (err) { | ||||
|         qerror_report_err(err); | ||||
|         error_free(err); | ||||
|         error_report_err(err); | ||||
|         return -1; | ||||
|     } | ||||
|     return 0; | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Markus Armbruster
						Markus Armbruster