mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-21 20:15:17 +00:00
Fix remote_internal.c error handling of qparam_get_query
* src/remote_internal.c: Fixed reversed check of error handling of qparam_get_query call (Dan Berrange).
This commit is contained in:
parent
3b0149354b
commit
1be1fe69f5
@ -1,3 +1,9 @@
|
||||
Mon Dec 17 17:38:00 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
|
||||
|
||||
Fix remote_internal.c error handling of qparam_get_query
|
||||
* src/remote_internal.c: Fixed reversed check of error handling
|
||||
of qparam_get_query call (Dan Berrange).
|
||||
|
||||
Mon Dec 17 10:05:00 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
|
||||
|
||||
Add separate qparams module for handling query parameters.
|
||||
|
@ -455,7 +455,7 @@ doRemoteOpen (virConnectPtr conn,
|
||||
#else
|
||||
uri->query =
|
||||
#endif
|
||||
qparam_get_query (vars)) != 0) goto failed;
|
||||
qparam_get_query (vars)) == NULL) goto failed;
|
||||
|
||||
free_qparam_set (vars);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user