mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
io: fix description of @errp parameter initialization
The "Error **errp" parameters must be NULL initialized not uninitialized. Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
parent
e155494cf0
commit
821791b505
4 changed files with 21 additions and 21 deletions
|
@ -55,7 +55,7 @@ struct QIOChannelTLS {
|
|||
* @master: the underlying channel object
|
||||
* @creds: the credentials to use for TLS handshake
|
||||
* @aclname: the access control list for validating clients
|
||||
* @errp: pointer to an uninitialized error object
|
||||
* @errp: pointer to a NULL-initialized error object
|
||||
*
|
||||
* Create a new TLS channel that runs the server side of
|
||||
* a TLS session. The TLS session handshake will use the
|
||||
|
@ -85,7 +85,7 @@ qio_channel_tls_new_server(QIOChannel *master,
|
|||
* @master: the underlying channel object
|
||||
* @creds: the credentials to use for TLS handshake
|
||||
* @hostname: the user specified server hostname
|
||||
* @errp: pointer to an uninitialized error object
|
||||
* @errp: pointer to a NULL-initialized error object
|
||||
*
|
||||
* Create a new TLS channel that runs the client side of
|
||||
* a TLS session. The TLS session handshake will use the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue