mirror of
				https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
				synced 2025-11-03 09:01:50 -05:00 
			
		
		
		
	device-manager: Don't allow setting an empty description in the client API
The module implementation treats an empty description as a protocol error, so we should validate the description already at client side.
This commit is contained in:
		
							parent
							
								
									638d0a51e2
								
							
						
					
					
						commit
						10da0578c1
					
				
					 1 changed files with 1 additions and 0 deletions
				
			
		| 
						 | 
					@ -225,6 +225,7 @@ pa_operation *pa_ext_device_manager_set_device_description(
 | 
				
			||||||
    PA_CHECK_VALIDITY_RETURN_NULL(c, !pa_detect_fork(), PA_ERR_FORKED);
 | 
					    PA_CHECK_VALIDITY_RETURN_NULL(c, !pa_detect_fork(), PA_ERR_FORKED);
 | 
				
			||||||
    PA_CHECK_VALIDITY_RETURN_NULL(c, c->state == PA_CONTEXT_READY, PA_ERR_BADSTATE);
 | 
					    PA_CHECK_VALIDITY_RETURN_NULL(c, c->state == PA_CONTEXT_READY, PA_ERR_BADSTATE);
 | 
				
			||||||
    PA_CHECK_VALIDITY_RETURN_NULL(c, c->version >= 14, PA_ERR_NOTSUPPORTED);
 | 
					    PA_CHECK_VALIDITY_RETURN_NULL(c, c->version >= 14, PA_ERR_NOTSUPPORTED);
 | 
				
			||||||
 | 
					    PA_CHECK_VALIDITY_RETURN_NULL(c, *description, PA_ERR_INVALID);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    o = pa_operation_new(c, NULL, (pa_operation_cb_t) cb, userdata);
 | 
					    o = pa_operation_new(c, NULL, (pa_operation_cb_t) cb, userdata);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue